From 3d95e6088a012eb9922aeadb1a6e900e156dd324 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 16 Jul 2018 11:24:58 +0200 Subject: [PATCH] leave a FIXME note --- www/common/sframe-app-framework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/sframe-app-framework.js b/www/common/sframe-app-framework.js index e0b9aa1ea..5bce57069 100644 --- a/www/common/sframe-app-framework.js +++ b/www/common/sframe-app-framework.js @@ -126,7 +126,7 @@ define([ if (newState === STATE.INFINITE_SPINNER || newState === STATE.DELETED) { state = newState; } else if (state === STATE.DISCONNECTED && newState !== STATE.INITIALIZING) { - throw new Error("Cannot transition from DISCONNECTED to " + newState); + throw new Error("Cannot transition from DISCONNECTED to " + newState); // FIXME we are getting "DISCONNECTED to READY" on prod } else if (state !== STATE.READY && newState === STATE.HISTORY_MODE) { throw new Error("Cannot transition from " + state + " to " + newState); } else {