From 0b1eca87b2944447ff886be0fc1d05c6ec8fa01f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Sat, 26 Oct 2024 11:32:31 +0200 Subject: [PATCH] Increase limit for article list Needs pagination --- nostr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostr.ts b/nostr.ts index 49606c8..1995fe0 100644 --- a/nostr.ts +++ b/nostr.ts @@ -53,7 +53,7 @@ export async function fetchArticlesByAuthor(pubkey: string) { const events = await fetchWithTimeout([{ authors: [pubkey], kinds: [30023], - limit: 10, + limit: 210, }]) as NostrEvent[]; return events;