fix limit

This commit is contained in:
smolgrrr 2023-11-09 14:45:59 +11:00
parent 940a891943
commit 7302e5305d

View File

@ -24,7 +24,7 @@ export const subGlobalFeed = (onEvent: SubCallback) => {
...(prefix && {ids: ['0'.repeat(prefix)]}), ...(prefix && {ids: ['0'.repeat(prefix)]}),
kinds: [1], kinds: [1],
since: Math.floor((Date.now() * 0.001) - (24 * 60 * 60)), since: Math.floor((Date.now() * 0.001) - (24 * 60 * 60)),
limit: 100, limit: 350,
}, },
unsub: true unsub: true
}); });