From f9b587b3b6d7845e76857b0f35b182dc4c3cd451 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Tue, 8 Aug 2023 11:31:29 +0530 Subject: [PATCH] minor bug fix --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index fd35569..c713c96 100644 --- a/index.html +++ b/index.html @@ -3643,7 +3643,9 @@ notify(`Restoring data! Please wait.`); messenger.restoreData(data).then(result => { notify("Data restore completed successful! Initiating reload, Please wait", 'success') - setTimeout(onLoadStartUp, 2000) + setTimeout(() => { + location.reload() + }, 1000) }).catch(error => { notify("Failed to restore data! Try again later", "error", error); });