mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
bypass electron browser cache when loading main page
This commit is contained in:
parent
528f167d2f
commit
85032e1716
1 changed files with 3 additions and 1 deletions
|
|
@ -67,7 +67,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function onReady() {
|
function onReady() {
|
||||||
window.location.href = "http://localhost:9337";
|
// redirect to meshchat and bypass browser cache
|
||||||
|
var timestamp = (new Date()).getTime();
|
||||||
|
window.location.href = "http://localhost:9337/?nocache=" + timestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue