2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-30 12:07:09 +00:00

98_update.pm: fix of the fix (Forum #137382)

git-svn-id: https://svn.fhem.de/fhem/trunk@28625 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2024-03-09 09:25:09 +00:00
parent 621ea4cfe7
commit ac8761be5b

View File

@ -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;