mirror of
https://github.com/dergigi/boris.git
synced 2025-12-27 03:24:31 +01:00
chore: increase nostrverse highlights limit from 100 to 500
- Better for testing and debugging with more realistic data volumes
This commit is contained in:
@@ -509,7 +509,7 @@ const Debug: React.FC<DebugProps> = ({
|
||||
const seenIds = new Set<string>()
|
||||
const { queryEvents } = await import('../services/dataFetch')
|
||||
|
||||
const events = await queryEvents(relayPool, { kinds: [9802], limit: 100 }, {
|
||||
const events = await queryEvents(relayPool, { kinds: [9802], limit: 500 }, {
|
||||
onEvent: (evt) => {
|
||||
if (seenIds.has(evt.id)) return
|
||||
seenIds.add(evt.id)
|
||||
|
||||
Reference in New Issue
Block a user