diff --git a/fhem/CHANGED b/fhem/CHANGED index eedbf0206..5004e9e34 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 89_AndroidDBHost: Fixed module not loaded error - change: 48_MieleAtHome: use id-tag instead of name-tag for docs - new: 50_SSFile: Module that integrates Synology Sile Station - bugfix: 98_WeekdayTimer: CONDITION now again is checked for entire day diff --git a/fhem/FHEM/89_AndroidDBHost.pm b/fhem/FHEM/89_AndroidDBHost.pm index f3474d7a5..a01c48589 100644 --- a/fhem/FHEM/89_AndroidDBHost.pm +++ b/fhem/FHEM/89_AndroidDBHost.pm @@ -4,7 +4,7 @@ # # 89_AndroidDBHost # -# Version 0.3 +# Version 0.4 # # FHEM Integration for Android Debug Bridge # @@ -254,7 +254,7 @@ sub Set ($@) return $result.$error; } elsif ($opt eq 'disconnect') { - my ($rc, $result, $error) = Execute ($Hash, 'disconnect', 'disconnected'); + my ($rc, $result, $error) = Execute ($hash, 'disconnect', 'disconnected'); UpdateClientStates ($hash); return "Disconnecting all devices failed $result $error" if ($rc == 0); }