diff options
Diffstat (limited to '')
-rwxr-xr-x | dist/js/app.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dist/js/app.js b/dist/js/app.js index 816250f..623213f 100755 --- a/dist/js/app.js +++ b/dist/js/app.js @@ -4,10 +4,14 @@ // @begin=js@ -const app_version = "1.0.16.3-beta"; -const previous_commit = "5376b618e88d85b3fc16561176478c104af1a01b"; +const app_version = "1.0.16.4-beta"; +const previous_commit = "80550d8cad189982bf607549b6b5d3977602b91b"; const BEZIAPP_UPDATE_INTERVAL = 300; // update vsakih 300 sekund +if (location.protocol !== 'https:') { + location.replace(`https:${location.href.substring(location.protocol.length)}`); +} + if ("serviceWorker" in navigator) { navigator.serviceWorker.register("/sw.js") .then(() => { }) |