From afaa8ef55b4b396eb0e539cbf6f0679bf84b3f51 Mon Sep 17 00:00:00 2001 From: LeonGaultier Date: Mon, 12 Oct 2020 07:01:56 +0000 Subject: [PATCH] 73_GardenaSmartBridge: change isconnected to isConnected git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@22957 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- CHANGED | 1 + FHEM/73_GardenaSmartBridge.pm | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGED b/CHANGED index 21b53b64f..74f9793d7 100644 --- a/CHANGED +++ b/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: 73_GardenaSmartBridge: change isconnected to isConnected - feature: 76_SMAPortal: new attribute cookieDelete - feature: 32_withings: added ecg reading types for scanwatch - change: 59_Twilight: get weather-dependend data by NotifyFn. diff --git a/FHEM/73_GardenaSmartBridge.pm b/FHEM/73_GardenaSmartBridge.pm index 5e83d79bd..df1431ce1 100644 --- a/FHEM/73_GardenaSmartBridge.pm +++ b/FHEM/73_GardenaSmartBridge.pm @@ -879,7 +879,7 @@ sub WriteReadings { if ( ref( $v->{ip} ) ne 'HASH' ); readingsBulkUpdateIfChanged( $hash, 'ethernet_status-isconnected', - $v->{isconnected} ); + $v->{isConnected} ); } elsif ( $decode_json->{abilities}[0]{properties} [$properties]{name} eq 'wifi_status' ) @@ -892,7 +892,7 @@ sub WriteReadings { 'wifi_status-ip', $v->{ip} ) if ( ref( $v->{ip} ) ne 'HASH' ); readingsBulkUpdateIfChanged( $hash, - 'wifi_status-isconnected', $v->{isconnected} ); + 'wifi_status-isconnected', $v->{isConnected} ); readingsBulkUpdateIfChanged( $hash, 'wifi_status-signal', $v->{signal} ); } @@ -1376,7 +1376,7 @@ sub DeletePassword { ], "release_status": "stable", "license": "GPL_2", - "version": "v2.0.2", + "version": "v2.0.3", "author": [ "Marko Oldenburg " ],