From 6d87d9915bb7a3692037398b497c4e8ef1605063 Mon Sep 17 00:00:00 2001 From: Ximi1970 Date: Mon, 6 Nov 2023 15:07:25 +0100 Subject: [PATCH] Fix undefined filters error --- webext/background.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webext/background.js b/webext/background.js index dd5ec2a..cd1017b 100644 --- a/webext/background.js +++ b/webext/background.js @@ -325,7 +325,10 @@ SysTrayX.Messaging = { sendMailCountPre115(); } } else { - sendMailCount(); + if (SysTrayX.Messaging.startupDelayFinished) + { + sendMailCount(); + } } },