From be1afacc0c42dcce8cd79a6c862e0ae8ce0a6cf1 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Wed, 27 Feb 2019 18:02:18 -0800 Subject: [PATCH] Re-add the queue removal in setConfig --- lib/utils/debounce.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/debounce.js b/lib/utils/debounce.js index c602239d0c..2c9a42a65f 100644 --- a/lib/utils/debounce.js +++ b/lib/utils/debounce.js @@ -36,6 +36,7 @@ export class Debouncer { this._timer = this._asyncModule.run(() => { this._timer = null; this._callback(); + debouncerQueue.delete(this); }); } /**