From f5e5da25eb09fdc044ddc98b2129defd8812105a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Mon, 8 Dec 2025 17:17:43 -0800 Subject: [PATCH] Remove accidental code comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit removes an accidentally placed code comment. Behavior has been tested during the original work related to that commit. Fixes: b562b930cccc1e50f4916758f31ade0840314682 Signed-off-by: Daniel D’Aquino --- .../Networking/NostrNetworkManager/NostrNetworkManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Core/Networking/NostrNetworkManager/NostrNetworkManager.swift b/damus/Core/Networking/NostrNetworkManager/NostrNetworkManager.swift index 69b61fe8..28ef46c7 100644 --- a/damus/Core/Networking/NostrNetworkManager/NostrNetworkManager.swift +++ b/damus/Core/Networking/NostrNetworkManager/NostrNetworkManager.swift @@ -61,7 +61,7 @@ class NostrNetworkManager { func handleAppBackgroundRequest(beforeClosingNdb operationBeforeClosingNdb: (() async -> Void)? = nil) async { // Mark NDB as closed without actually closing it, to avoid new tasks from using NostrDB - // self.delegate.ndb.markClosed() + self.delegate.ndb.markClosed() await self.reader.cancelAllTasks() await self.pool.cleanQueuedRequestForSessionEnd() await operationBeforeClosingNdb?()