We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 093cc82 commit 472bcf4Copy full SHA for 472bcf4
1 file changed
lib/uploader/uploader.ts
@@ -326,6 +326,10 @@ export class Uploader {
326
reject(error)
327
}
328
} finally {
329
+ // Upload queue is cleared when all the uploading jobs are done
330
+ // Meta upload unlike real uploading does not create a job
331
+ // Removing it manually here to make sure it is remove even when no uploading happened and there was nothing to finish
332
+ this._uploadQueue.splice(this._uploadQueue.indexOf(upload), 1)
333
this._notifyAll(upload)
334
this.updateStats()
335
0 commit comments