mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-20 12:38:50 +00:00
Add explanation on infinite loop bug
This commit is contained in:
@@ -31,7 +31,11 @@ export class MozJpegEncoder implements Encoder {
|
|||||||
return url;
|
return url;
|
||||||
},
|
},
|
||||||
onRuntimeInitialized() {
|
onRuntimeInitialized() {
|
||||||
// This is a bug I discovered. To be filed.
|
// An Emscripten is a then-able that, for some reason, `then()`s itself,
|
||||||
|
// causing an infite loop when you wrap it in a real promise. Deleten the `then`
|
||||||
|
// prop solves this for now.
|
||||||
|
// See: https://github.com/kripken/emscripten/blob/incoming/src/postamble.js#L129
|
||||||
|
// TODO(surma@): File a bug with Emscripten on this.
|
||||||
delete (m as any).then;
|
delete (m as any).then;
|
||||||
resolve(m);
|
resolve(m);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user