increase limit to 1000

This commit is contained in:
callebtc
2026-01-12 16:41:37 +07:00
parent e02f4327c0
commit 6faa46a22f
+1 -1
View File
@@ -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()