From d54d7011d9a6a466ef7a36542fd2160bf5ec869d Mon Sep 17 00:00:00 2001 From: n1474335 Date: Wed, 27 Sep 2017 15:44:00 +0000 Subject: [PATCH] Removed excess auto-baking on input load from URI --- src/web/App.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/web/App.js b/src/web/App.js index ef3dc3f6..ff57a7ed 100755 --- a/src/web/App.js +++ b/src/web/App.js @@ -402,10 +402,14 @@ App.prototype.loadURIParams = function() { // Read in input data from URI params if (this.uriParams.input) { + this.autoBakePause = true; try { const inputData = Utils.fromBase64(this.uriParams.input); this.setInput(inputData); - } catch (err) {} + } catch (err) { + } finally { + this.autoBakePause = false; + } } this.autoBake();