From 0024edcb7f2722352f1cab965789595db901165e Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 12 Jun 2020 19:50:38 +0100 Subject: Use existing session id for fetching flows as to not get a new session id --- src/interactive-auth.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/interactive-auth.js b/src/interactive-auth.js index ad47701e..edf5a429 100644 --- a/src/interactive-auth.js +++ b/src/interactive-auth.js @@ -148,8 +148,14 @@ InteractiveAuth.prototype = { // if we have no flows, try a request to acquire the flows if (!hasFlows) { if (this._busyChangedCallback) this._busyChangedCallback(true); - // Do a fresh request as we're just acquiring flows. - this._doRequest(null).finally(() => { + // use the existing sessionid, if one is present. + let auth = null; + if (this._data.session) { + auth = { + session: this._data.session, + }; + } + this._doRequest(auth).finally(() => { if (this._busyChangedCallback) this._busyChangedCallback(false); }); } else { -- cgit v1.2.1