diff --git a/fhem/CHANGED b/fhem/CHANGED index 6e9d2300b..15cde70a2 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. + - gugfix: 74_GardenaSmartBridge: change state to connected - bugfix: 74_XiaomiFlowerSens: fix change InternalTimer now - bugfix: 49_SSCam: V3.2.4, don't retrieve presets during restart if cam is disabled diff --git a/fhem/FHEM/73_GardenaSmartBridge.pm b/fhem/FHEM/73_GardenaSmartBridge.pm index 193f3fd4c..69e6b3b48 100644 --- a/fhem/FHEM/73_GardenaSmartBridge.pm +++ b/fhem/FHEM/73_GardenaSmartBridge.pm @@ -68,7 +68,7 @@ eval "use JSON;1" or $missingModul .= "JSON "; eval "use IO::Socket::SSL;1" or $missingModul .= "IO::Socket::SSL "; -my $version = "0.2.7"; +my $version = "0.2.8"; @@ -396,7 +396,7 @@ sub GardenaSmartBridge_ErrorHandling($$$) { return; } - if( ( ($data =~ /Error/ ) or defined(eval{decode_json($data)}->{errors}) ) and exists( $param->{code} ) ) { + if( ( ($data =~ /Error/ ) or defined(eval{decode_json($data)}->{errors}) ) and exists( $param->{code} ) ) { readingsBeginUpdate( $dhash ); readingsBulkUpdate( $dhash, "state", $param->{code}, 1 ) if( ReadingsVal( $dname, "state" ,0) ne "initialized" ); @@ -450,7 +450,7 @@ sub GardenaSmartBridge_ErrorHandling($$$) { - readingsSingleUpdate($hash,'state','connect to cloud',1) if( defined($hash->{helper}{locations_id}) ); + readingsSingleUpdate($hash,'state','connected to cloud',1) if( defined($hash->{helper}{locations_id}) ); GardenaSmartBridge_ResponseProcessing($hash,$data); }