AndroidDBHost: Bugfix

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@24544 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
zap 2021-05-30 17:22:45 +00:00
parent 1f7b3e3541
commit 6d2ee4e35a
2 changed files with 3 additions and 2 deletions

View File

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

View File

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