From 7ad39cbabd970d9ca06d9a3bfd267501c2c08521 Mon Sep 17 00:00:00 2001 From: Fyssion Date: Sun, 25 Feb 2024 00:14:23 -0600 Subject: [PATCH] Reduce number of articles fetched per request --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 4630854..4a08365 100644 --- a/src/main.ts +++ b/src/main.ts @@ -240,7 +240,7 @@ export default class OmnivorePlugin extends Plugin { (templateSpan) => templateSpan[1] === 'fileAttachment', ) - const size = 50 + const size = 15 for ( let hasNextPage = true, articles: Article[] = [], after = 0; hasNextPage;