Skip to content

Commit

Permalink
semantics: fix memory leak in conversation browser plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover committed Jun 19, 2024
1 parent 7dc692e commit 5bc9a27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ windowIsClosing

self cancelSmartSummary.
backgroundProcesses ifNotNil:
[backgroundProcesses do: [:process | process terminate]].
[backgroundProcesses do: [:process | process terminate]].
smartSummaryConversation ifNotNil:
[smartSummaryConversation releaseForEventReceiver: self].
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
"smartSummary" : "ct 10/18/2023 18:02",
"smartSummaryHeader" : "ct 8/21/2023 02:37",
"smartSummaryText" : "ct 8/21/2023 02:19",
"windowIsClosing" : "ct 12/14/2023 18:35" } }
"windowIsClosing" : "ct 6/19/2024 02:21" } }

0 comments on commit 5bc9a27

Please sign in to comment.