From b7535cd312fc47933262afa17544b0ef6d4fee47 Mon Sep 17 00:00:00 2001 From: Icereed Date: Tue, 7 Jan 2025 16:43:09 +0100 Subject: [PATCH] Update main.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index b290886..8279e6e 100644 --- a/main.go +++ b/main.go @@ -344,7 +344,7 @@ func validateOrDefaultEnvVars() { func (app *App) processAutoTagDocuments() (int, error) { ctx := context.Background() - documents, err := app.Client.GetDocumentsByTags(ctx, []string{autoTag}, 1) + documents, err := app.Client.GetDocumentsByTags(ctx, []string{autoTag}, 1, 25) if err != nil { return 0, fmt.Errorf("error fetching documents with autoTag: %w", err) }