From f090de6983a7d009c1f1b9a5e2936f5d7751d210 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 1 Sep 2016 01:22:00 +0200 Subject: [PATCH] Correctly fall back to soljson-latest in the offline case. --- src/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.js b/src/app.js index 79847f8492..d10131679b 100644 --- a/src/app.js +++ b/src/app.js @@ -506,9 +506,9 @@ var run = function () { latestRelease = release; } } - if (latestRelease === null) { - latestRelease = 'soljson-latest.js'; - } + } + if (latestRelease === null) { + latestRelease = 'soljson-latest.js'; } loadVersion(queryParams.get().version || latestRelease); } else {