From 6630f5a79232084bf8356085a92b2df07bebc578 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 12 Jan 2026 14:13:24 +0700 Subject: [PATCH] start the service --- bitchat/BitchatApp.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bitchat/BitchatApp.swift b/bitchat/BitchatApp.swift index 644554b0..049ae56b 100644 --- a/bitchat/BitchatApp.swift +++ b/bitchat/BitchatApp.swift @@ -63,6 +63,10 @@ struct BitchatApp: App { // Initialize network activation policy; will start Tor/Nostr only when allowed NetworkActivationService.shared.start() + + // Start presence service (will wait for Tor readiness) + GeohashPresenceService.shared.start() + // Check for shared content checkForSharedContent() }