mirror of
https://github.com/tenrok/axios.git
synced 2026-06-20 20:00:40 +03:00
Fixed race condition on immediate requests cancellation (#4261)
* Fixes #4260: fixed race condition on immediate requests cancellation * Update http.js Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
@@ -25,10 +25,9 @@ function CancelToken(executor) {
|
||||
this.promise.then(function(cancel) {
|
||||
if (!token._listeners) return;
|
||||
|
||||
var i;
|
||||
var l = token._listeners.length;
|
||||
var i = token._listeners.length;
|
||||
|
||||
for (i = 0; i < l; i++) {
|
||||
while (i-- > 0) {
|
||||
token._listeners[i](cancel);
|
||||
}
|
||||
token._listeners = null;
|
||||
|
||||
Reference in New Issue
Block a user