From 51c91bf9eede044c0093bf265855d149547697d2 Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Wed, 1 Dec 2021 00:17:26 +0800 Subject: [PATCH] Rename variable --- apps/authentiwatch/interface.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/authentiwatch/interface.html b/apps/authentiwatch/interface.html index 17b7648ea..6b39c148b 100644 --- a/apps/authentiwatch/interface.html +++ b/apps/authentiwatch/interface.html @@ -322,8 +322,8 @@ function loadTokens() { Puck.eval(`require('Storage').read(${JSON.stringify('authentiwatch.json')})`,data=>{ Util.hideModal(); try { - let saved = JSON.parse(data); - tokens = saved.data; + let load = JSON.parse(data); + tokens = load.data; updateTokens(); } catch { tokens = [];