From 6faa46a22ffb455e1f7ce2ced597b44f4736b0ab Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 12 Jan 2026 16:41:37 +0700 Subject: [PATCH] increase limit to 1000 --- bitchat/Nostr/NostrRelayManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitchat/Nostr/NostrRelayManager.swift b/bitchat/Nostr/NostrRelayManager.swift index 1211c2ec..bbe13235 100644 --- a/bitchat/Nostr/NostrRelayManager.swift +++ b/bitchat/Nostr/NostrRelayManager.swift @@ -888,7 +888,7 @@ struct NostrFilter: Encodable { } // For location channels: geohash-scoped ephemeral events (kind 20000) and presence (kind 20001) - static func geohashEphemeral(_ geohash: String, since: Date? = nil, limit: Int = 200) -> NostrFilter { + static func geohashEphemeral(_ geohash: String, since: Date? = nil, limit: Int = 1000) -> NostrFilter { var filter = NostrFilter() filter.kinds = [20000, 20001] filter.since = since?.timeIntervalSince1970.toInt()