2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-22 08:11:44 +00:00

73_GardenaSmartBridge: fix undefined_value Error

git-svn-id: https://svn.fhem.de/fhem/trunk@19308 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2019-05-01 16:21:07 +00:00
parent 293ac1c944
commit 651063330f
2 changed files with 3 additions and 1 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.
- bugfix: 73_GardenaSmartBridge: fix undefined_value Error
- feature: 98_Text2Speech: add Amazon Polly as new suggested TTS-Engine
due best quality
- bugfix: 73_AutoShuttersControl: fix shading absent and coming home, fix

View File

@ -59,7 +59,7 @@ use strict;
use warnings;
use FHEM::Meta;
my $version = "1.6.0";
my $version = "1.6.1";
sub GardenaSmartBridge_Initialize($) {
@ -502,6 +502,7 @@ sub ErrorHandling($$$) {
( $data =~ /Error/ )
or defined( eval { decode_json($data) }->{errors} )
)
and ref($param->{code}) eq 'HASH'
and exists( $param->{code} )
)
{