Merge pull request #2 from StroepWafel/weightings

fix try catch error
This commit is contained in:
Jaxx7594
2026-01-28 23:16:42 +08:00
committed by GitHub
@@ -653,6 +653,7 @@ async function extractPDFText(url: string): Promise<string> {
return text;
} catch (error) {
console.log(error);
throw error;
}
}