change isconnected key in hash to isConnected

This commit is contained in:
Marko Oldenburg 2020-10-07 10:11:08 +02:00
parent c31301532b
commit 51d9183c59

View File

@ -879,7 +879,7 @@ sub WriteReadings {
if ( ref( $v->{ip} ) ne 'HASH' ); if ( ref( $v->{ip} ) ne 'HASH' );
readingsBulkUpdateIfChanged( $hash, readingsBulkUpdateIfChanged( $hash,
'ethernet_status-isconnected', 'ethernet_status-isconnected',
$v->{isconnected} ); $v->{isConnected} );
} }
elsif ( $decode_json->{abilities}[0]{properties} elsif ( $decode_json->{abilities}[0]{properties}
[$properties]{name} eq 'wifi_status' ) [$properties]{name} eq 'wifi_status' )
@ -892,7 +892,7 @@ sub WriteReadings {
'wifi_status-ip', $v->{ip} ) 'wifi_status-ip', $v->{ip} )
if ( ref( $v->{ip} ) ne 'HASH' ); if ( ref( $v->{ip} ) ne 'HASH' );
readingsBulkUpdateIfChanged( $hash, readingsBulkUpdateIfChanged( $hash,
'wifi_status-isconnected', $v->{isconnected} ); 'wifi_status-isconnected', $v->{isConnected} );
readingsBulkUpdateIfChanged( $hash, readingsBulkUpdateIfChanged( $hash,
'wifi_status-signal', $v->{signal} ); 'wifi_status-signal', $v->{signal} );
} }
@ -1376,7 +1376,7 @@ sub DeletePassword {
], ],
"release_status": "stable", "release_status": "stable",
"license": "GPL_2", "license": "GPL_2",
"version": "v2.0.2", "version": "v2.0.3",
"author": [ "author": [
"Marko Oldenburg <leongaultier@gmail.com>" "Marko Oldenburg <leongaultier@gmail.com>"
], ],