fix: missing closing brace in setProgress function

This commit is contained in:
Admin
2026-03-11 15:49:36 +05:00
parent 3e4b1c0484
commit 3ced50ccd5

View File

@@ -294,6 +294,7 @@ export async function setProgress(
if (!res.ok) { if (!res.ok) {
const body = await res.text().catch(() => ''); const body = await res.text().catch(() => '');
log.error('pocketbase', 'setProgress POST failed', { slug, chapter, status: res.status, body }); log.error('pocketbase', 'setProgress POST failed', { slug, chapter, status: res.status, body });
}
} }
} }