diff --git a/fhem/CHANGED b/fhem/CHANGED index 62cf19d5b..3be5820bf 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: 48_MieleAtHome: fix but in autocreate - feature: 32_withings: added vascularAge reading - feature: 49_SSCamSTRM: new setter snap - feature: 02_RSS: support for more than one directory for background diff --git a/fhem/FHEM/48_MieleAtHome.pm b/fhem/FHEM/48_MieleAtHome.pm index 1f114bf6b..a8e356bc4 100644 --- a/fhem/FHEM/48_MieleAtHome.pm +++ b/fhem/FHEM/48_MieleAtHome.pm @@ -35,7 +35,7 @@ use Encode qw(encode_utf8); use List::Util qw[min max]; use JSON; -my $version = "1.1.0"; +my $version = "1.1.1"; my $MAH_hasMimeBase64 = 1; @@ -387,7 +387,7 @@ sub MAH_SetFn($$@) return undef; } elsif( $cmd eq 'autocreate' ) { - return "autocreate needs a valid ACCESS_TOKEN, please try again" if (MAH_getAccessToken($hash) == ""); + return "autocreate needs a valid ACCESS_TOKEN, please try again" if (MAH_getAccessToken($hash) eq ""); return "use $cmd without arguments" if(@args != 0); InternalTimer(gettimeofday()+0, "MAH_autocreate", $hash); return undef;