Merge pull request #4 from CEbbinghaus/patch-1
Added details to response to fix error
This commit is contained in:
commit
4f095475f6
1 changed files with 9 additions and 1 deletions
|
@ -25,7 +25,15 @@ function decode() {
|
||||||
for (var i = 0; i < binaryString.length; i++) {
|
for (var i = 0; i < binaryString.length; i++) {
|
||||||
bytes[i] = binaryString.charCodeAt(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() {
|
export function init_embedded() {
|
||||||
|
|
Loading…
Reference in a new issue