We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348bc1c commit 3cc8669Copy full SHA for 3cc8669
src/Fetch.js
@@ -99,7 +99,7 @@ class Fetch {
99
}
100
101
__abort() {
102
- Networking.abortRequest(this._requestId);
+ this._requestId && Networking.abortRequest(this._requestId);
103
this._streamController?.error(new AbortError());
104
this._deferredPromise.reject(new AbortError());
105
this.__clearNetworkSubscriptions();
0 commit comments