Add FIXME comment and fix arrow-parens lint
This commit is contained in:
parent
ae2b55fb96
commit
91bec58ddf
|
|
@ -183,7 +183,9 @@ async function _checkWebCodecsH264DecodeSupport() {
|
|||
return true;
|
||||
}
|
||||
|
||||
_checkWebCodecsH264DecodeSupport().then(result => {
|
||||
// FIXME: Avoid top-level await due to a Chromium bug where Decoder.flush()
|
||||
// can hang indefinitely on some Android devices, blocking module evaluation.
|
||||
_checkWebCodecsH264DecodeSupport().then((result) => {
|
||||
supportsWebCodecsH264Decode = result;
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue