This commit is contained in:
Silent YANG 2024-06-15 08:10:51 +08:00
parent a0380d24e3
commit 8c900edef6

View file

@ -22,7 +22,7 @@ class Updater {
};
async getHtml() {
const html = await fetch('/').then(res => res.text());//读取index html
const html = await fetch('/?v=' + (new Date()).getTime() ).then(res => res.text());//读取index html
return html
};