Merge pull request #13822 from Snuffleupagus/ReadableStreams-cancel-no-Uncaught_promise

Prevent "Uncaught promise" messages in the console when cancelling (some) `ReadableStream`s
This commit is contained in:
Tim van der Meij 2021-07-30 22:09:29 +02:00 committed by GitHub
commit 67f4c34f63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 5 deletions

View file

@ -1772,7 +1772,11 @@ class PDFPageProxy {
return;
}
}
intentState.streamReader.cancel(new AbortException(reason?.message));
intentState.streamReader
.cancel(new AbortException(reason?.message))
.catch(() => {
// Avoid "Uncaught promise" messages in the console.
});
intentState.streamReader = null;
if (this._transport.destroyed) {