Skip to content

Commit 2638a65

Browse files
committed
fix: manifest limit
1 parent b305832 commit 2638a65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/worker/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ async function handleManifest(url: URL, env: Env, origin: string): Promise<Respo
302302
const { where, params, paramIndex } = buildFilters(url);
303303
const rows = await sql.query(
304304
`SELECT id FROM documents WHERE ${where} ORDER BY id LIMIT $${paramIndex}`,
305-
[...params, 100000]
305+
[...params, 2000000]
306306
) as { id: string }[];
307307

308308
const body = rows.map((r) => `${R2_BASE}${r.id}.docx`).join("\n") + "\n";

0 commit comments

Comments
 (0)