2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

73_GardenaSmartBridge: change state value to Connected

git-svn-id: https://svn.fhem.de/fhem/trunk@21755 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2020-04-23 05:22:57 +00:00
parent 283d9e0075
commit 7978575888
2 changed files with 4 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.
# Do not insert empty lines here, update check depends on it.
- change: 73_GardenaSmartBridge: change state value to Connected
- change: 37_echodevice.pm more loginformations set "NPM_login refresh"
- bugfix: 88_HMCCU: Fixed bug in RPC callback URL creation.
- bugfix: OpenWeatherMapAPI: fix Use of uninitialized value in sprintf

View File

@ -63,7 +63,7 @@ use POSIX;
use FHEM::Meta;
use HttpUtils;
our $VERSION = '1.6.8';
our $VERSION = '1.6.9';
my $missingModul = '';
eval "use Encode qw(encode encode_utf8 decode_utf8);1"
@ -395,7 +395,7 @@ sub Notify($$) {
if (
$devtype eq 'GardenaSmartBridge'
and (
grep /^state:.connected.to.cloud$/,
grep /^state:.Connected$/,
@{$events} or grep /^lastRequestState:.request_error$/,
@{$events}
)
@ -697,7 +697,7 @@ sub ErrorHandling($$$) {
return;
}
readingsSingleUpdate( $hash, 'state', 'connected to cloud', 1 )
readingsSingleUpdate( $hash, 'state', 'Connected', 1 )
if ( defined( $hash->{helper}{locations_id} ) );
ResponseProcessing( $hash, $data )
if ( ref($decode_json) eq 'HASH' );