Merge pull request #4 from CEbbinghaus/patch-1

Added details to response to fix error
This commit is contained in:
NGnius (Graham) 2023-04-01 20:57:41 -04:00 committed by GitHub
commit 4f095475f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,15 @@ function decode() {
for (var i = 0; i < binaryString.length; i++) {
bytes[i] = binaryString.charCodeAt(i);
}
return (async function() {return new Response(bytes.buffer);})();
return (async function() {
return new Response(bytes.buffer, {
status: 200,
statusText: 'OK',
headers: {
'Content-Type': 'application/wasm'
}
});
})();
}
export function init_embedded() {