00_MQTT: fix Undef

git-svn-id: https://svn.fhem.de/fhem/trunk@15087 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
eisler 2017-09-17 18:02:13 +00:00
parent b4c69b14d2
commit d833bfd7e1
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # Do not insert empty lines here, update check depends on it.
- bugfix: 00_MQTT: fix Undef
- feature: 83_IOhomecontrol: new attribute setCmds - feature: 83_IOhomecontrol: new attribute setCmds
- bugfix: 00_MQTT: added delete - bugfix: 00_MQTT: added delete
- new: 83_IOhomecontrol: control IOhomecontrol devices via REST API - new: 83_IOhomecontrol: control IOhomecontrol devices via REST API

View File

@ -133,9 +133,6 @@ sub Define($$) {
sub Undef($) { sub Undef($) {
my $hash = shift; my $hash = shift;
Stop($hash); Stop($hash);
my $name = $hash->{NAME};
setKeyValue($name."_user",undef);
setKeyValue($name."_pass",undef);
return undef; return undef;
} }