From 61ee6eb8af61d42e46fd7b4eb77cab0b2c0239a3 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 10 Jun 2019 16:19:45 +0100 Subject: [PATCH] This should be null, not false Co-Authored-By: J. Ryan Stinnett --- src/interactive-auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interactive-auth.js b/src/interactive-auth.js index 90b17fc0d..23f756db1 100644 --- a/src/interactive-auth.js +++ b/src/interactive-auth.js @@ -126,7 +126,7 @@ function InteractiveAuth(opts) { // if we are currently trying to submit an auth dict (which includes polling) // the promise the will resolve/reject when it completes - this._submitPromise = false; + this._submitPromise = null; } InteractiveAuth.prototype = {