From 2fdb114e4ba4e52b3c37b65d4122e00e769fab8a Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 26 Oct 2018 19:21:37 +1300 Subject: [PATCH] Fix interstitial page not displaying at Interface start-up --- scripts/system/interstitialPage.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/system/interstitialPage.js b/scripts/system/interstitialPage.js index 670d21c7a7..54bb26d9ed 100644 --- a/scripts/system/interstitialPage.js +++ b/scripts/system/interstitialPage.js @@ -607,5 +607,11 @@ } } + // location.hostname may already be set by the time the script is loaded. + // Show the interstitial page if the domain isn't loaded. + if (!location.isConnected) { + domainChanged(location.hostname); + } + Script.scriptEnding.connect(cleanup); }());