fix: render errors as HTML given correct content-type
Alan Pearce alan@alanpearce.eu
Fri, 17 May 2024 17:37:35 +0200
1 files changed, 2 insertions(+), 1 deletions(-)
jump to
M frontend/static/search.js → frontend/static/search.js
@@ -80,7 +80,8 @@ fetch: "true", }, }); - if (res.ok) { + // render errors sent as HTML as well as OK responses + if (res.headers.get("content-type").startsWith("text/html")) { state.fragment = await res.text(); state.opened = []; history.replaceState(state, null, url);