Properly handle exception
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
c303211d94
commit
e56bdfaf87
1 changed files with 7 additions and 1 deletions
|
@ -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 });
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue