fix try catch error

This commit is contained in:
StroepWafel
2026-01-28 19:38:20 +10:30
committed by GitHub
parent 7a04b22b22
commit 355c5f2d46
@@ -582,6 +582,7 @@ async function extractPDFText(url: string): Promise<string> {
return text;
} catch (error) {
console.log(error);
throw error;
}
}