From 81187c4621afecd16cecf5348027e2983c263140 Mon Sep 17 00:00:00 2001 From: DS_Starter Date: Sun, 20 Dec 2020 16:02:30 +0000 Subject: [PATCH] 50_SSFile: contrib V0.7.6 git-svn-id: https://svn.fhem.de/fhem/trunk@23388 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/DS_Starter/50_SSFile.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fhem/contrib/DS_Starter/50_SSFile.pm b/fhem/contrib/DS_Starter/50_SSFile.pm index cdbcb68e5..d80b9d19b 100644 --- a/fhem/contrib/DS_Starter/50_SSFile.pm +++ b/fhem/contrib/DS_Starter/50_SSFile.pm @@ -144,6 +144,7 @@ BEGIN { # Versions History intern my %vNotesIntern = ( + "0.7.6" => "20.12.2020 minor change to avoid increase memory ", "0.7.5" => "07.12.2020 minor fix avoid overtakers ", "0.7.4" => "30.11.2020 add mtime, crtime to uploaded files ", "0.7.3" => "29.11.2020 fix (prepare)Download without dest= option", @@ -1673,7 +1674,8 @@ sub execOp_parse { }; if($hmodep{$opmode} && defined &{$hmodep{$opmode}{fn}}) { - $ret = &{$hmodep{$opmode}{fn}} ($params) // q{}; + $ret = &{$hmodep{$opmode}{fn}} ($params) // q{}; + undef $params; } else { Log3($name, 1, qq{$name - ERROR - no operation parse function found for "$opmode"});