From 28bd24e9982b9d7ed3b1d0e406507f31265540c5 Mon Sep 17 00:00:00 2001 From: mattk70 Date: Mon, 4 Nov 2024 00:17:02 +0000 Subject: [PATCH] delay sending track visit --- js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui.js b/js/ui.js index 9439cd6..ea1724a 100644 --- a/js/ui.js +++ b/js/ui.js @@ -1868,7 +1868,7 @@ window.onload = async () => { // Add cpu model & memory to config config.CPU = DIAGNOSTICS['CPU']; config.RAM = DIAGNOSTICS['System Memory']; - trackVisit(config); + setTimeout(() => {trackVisit(config)}, 5000); }) }