Fix interstitial page not displaying at Interface start-up

This commit is contained in:
David Rowe 2018-10-26 19:21:37 +13:00
parent 2dfd63f4e7
commit 2fdb114e4b

View file

@ -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);
}());