Merge pull request #20 from berickson1/alreadyAbortedCrash

Fix a bug that caused an assert if a request was canceled (via promis…
This commit is contained in:
David de Regt 2017-12-22 21:47:24 -08:00 коммит произвёл GitHub
Родитель b7f96806eb b23126266c
Коммит 4e98b51924
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 11 добавлений и 4 удалений

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "simplerestclients",
"version": "0.1.4",
"version": "0.1.5",
"description": "A library of components for accessing RESTful services with javascript/typescript.",
"author": "David de Regt <David.de.Regt@microsoft.com>",
"scripts": {

Просмотреть файл

@ -478,6 +478,13 @@ export abstract class SimpleWebRequestBase {
}
protected _enqueue(): void {
// It's possible for a request to be canceled before it's queued since onCancel fires synchronously and we set up the listener
// before queueing for execution
// An aborted request should never be queued for execution
if (this._aborted) {
return;
}
// Throw it on the queue
const index = _.findIndex(requestQueue, request =>
request.getPriority() < (this._options.priority || WebRequestPriority.DontCare));