Properly handle exception

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-05-05 00:16:48 +02:00 committed by Alexander Borsuk
parent c303211d94
commit e56bdfaf87

View file

@ -89,5 +89,11 @@ async function handleFetchEvent(event: FetchEvent) {
};
const resp = await getAssetFromKV(event, getAssetOptions);
const ge0HtmlTemplate = await resp.text();
return onGe0Decode(ge0HtmlTemplate, event.request.url);
try {
// await to catch exceptions.
const htmlResponse = await onGe0Decode(ge0HtmlTemplate, event.request.url);
return htmlResponse;
} catch (err) {
return new Response(String(err), { status: 500 });
}
}