aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/js/refresh.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/static/js/refresh.ts b/static/js/refresh.ts
index 88710fa..d308014 100644
--- a/static/js/refresh.ts
+++ b/static/js/refresh.ts
@@ -17,9 +17,9 @@
check(url, "HEAD", function (request) {
const local = document.querySelector('meta[name="last-modified"]').content;
const remote = request.getResponseHeader("last-modified") || local;
- const localHour = local.substring(0, local.length - 9);
- const remoteHour = remote.substring(0, remote.length - 9);
- const modified = localHour !== remoteHour;
+ const localSecond = local.substring(0, local.length - 5);
+ const remoteSecond = remote.substring(0, remote.length - 5);
+ const modified = localSecond !== remoteSecond;
if (modified) {
const indicator = document.querySelector("a[data-update]");