From bd86ddca52f7d3647ceef5b9cd52df971ec49f64 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Sat, 9 Mar 2024 09:25:09 +0000 Subject: [PATCH] 98_update.pm: fix of the fix (Forum #137382) git-svn-id: https://svn.fhem.de/fhem/trunk@28625 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_update.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/98_update.pm b/fhem/FHEM/98_update.pm index ba897df3e..c00e63c6f 100644 --- a/fhem/FHEM/98_update.pm +++ b/fhem/FHEM/98_update.pm @@ -80,7 +80,7 @@ CommandUpdate($$) $updateInBackground = AttrVal("global","updateInBackground",1); if($arg =~ m/^(check|checktime|all|force)$/i) { $arg = lc($arg); - $updateInBackground = 0; + $updateInBackground = 0 if($arg ne "all"); } $updArg = $arg;