After Store: Correctly handle preloaded HTML

This commit is contained in:
lain 2020-07-07 13:17:25 +02:00
parent 9ccc6174a7
commit 1f97f36e1c
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ const preloadFetch = async (request) => {
return {
ok: true,
json: () => JSON.parse(requestData),
text: () => requestData
text: () => JSON.parse(requestData)
}
}