aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-04-10 14:14:10 -0400
committertdro <tdro@noreply.example.com>2023-04-10 14:14:10 -0400
commit1a083c05f74ba929da347263c91f1479bb66d221 (patch)
tree65fd3c3b5ca8b8956b7fb01acd5baccbbb15dada /assets
parent7c8233d964507ab9b37706f066f7744dde744c99 (diff)
downloadcanory-1a083c05f74ba929da347263c91f1479bb66d221.tar.gz
canory-1a083c05f74ba929da347263c91f1479bb66d221.tar.bz2
canory-1a083c05f74ba929da347263c91f1479bb66d221.zip
static/js/refresh: Jitter is within seconds
Diffstat (limited to 'assets')
-rw-r--r--assets/js/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/js/index.js b/assets/js/index.js
index 0d15055..98b53d2 100644
--- a/assets/js/index.js
+++ b/assets/js/index.js
@@ -81,9 +81,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]");
check(url, "GET");