diff options
Diffstat (limited to 'app/ui/lyrics.php')
-rw-r--r-- | app/ui/lyrics.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/ui/lyrics.php b/app/ui/lyrics.php index 103167c..20a7d72 100644 --- a/app/ui/lyrics.php +++ b/app/ui/lyrics.php @@ -75,7 +75,7 @@ window.lyrics = {}; setInterval(async () => { - if (!window.delays) window.delays = await (await fetch("/assets/delays.json")).json(); + if (!window.delays) window.delays = await (await fetch("/assets/delays.json?_=" + [...crypto.getRandomValues(new Uint8Array(40))].map(m=>('0'+m.toString(16)).slice(-2)).join(''))).json(); if (window.parent.currentSongID !== lastID) { lastID = window.parent.currentSongID; |