From e270edaebd5b551036c5bd34cc90152cc8c4fca3 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Mon, 15 Jan 2024 18:43:29 +0500 Subject: [PATCH] bug fix to weekly scheduled backups ref https://github.com/usmannasir/cyberpanel/issues/1170 --- plogical/IncScheduler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plogical/IncScheduler.py b/plogical/IncScheduler.py index 99621f68f..3605ab0af 100644 --- a/plogical/IncScheduler.py +++ b/plogical/IncScheduler.py @@ -1505,7 +1505,10 @@ def main(): IncScheduler.WPUpdates() if args.function == 'Weekly': - IncScheduler.FixMailSSL() + try: + IncScheduler.FixMailSSL() + except: + pass ### Run incremental backups in sep thread