You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use pthread support of emcc. Compiler generated *.worker.js as WebWorker routine. In *.worker.js, createObjectURL was called with its old usage. However, old usage has been removed from browser engine.
Old usage:
URL.createObjectURL(blob);
New usage:
URL.createObjectURL(new Blob([blob],{type: 'application/zip'})); // value of "type" should be MIME type.
This code path changes at lot in 3.1.58 (the worker.js file was actually removed completely). Can you try rebuilding and see if you are still effected?
I use pthread support of emcc. Compiler generated *.worker.js as WebWorker routine. In *.worker.js,
createObjectURL
was called with its old usage. However, old usage has been removed from browser engine.Old usage:
New usage:
Compile command:
main.cpp:
Error in chrome console:
The text was updated successfully, but these errors were encountered: