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

73_NUKIBridge: Can't use stringas a HASH ref while strict refs in use

git-svn-id: https://svn.fhem.de/fhem/trunk@20027 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2019-08-20 07:20:44 +00:00
parent e95bf95648
commit 0e0fb447c8
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,7 @@
# 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_NUKIBridge: fix "Can't use stringas a HASH ref while strict
refs in use"
- change: 88_HMCCU: New features and bug fixes
- feature: 36_WMBUS: initial support for mode 7 encryption (mostly untested)
Digest::CMAC must be installed

View File

@ -46,7 +46,7 @@ use JSON;
use HttpUtils;
my $version = "0.6.3";
my $version = "0.6.4";
my $bridgeapi = "1.6";
@ -681,6 +681,8 @@ sub NUKIBridge_getCallbackList($) {
my $decode_json = NUKIBridge_CallBlocking($hash,"callback/list",undef);
return
unless ( ref($decode_json) eq 'HASH' );
Log3 $name, 4, "NUKIBridge ($name) - Callback data is collected and processed";

View File

@ -33,7 +33,7 @@ use warnings;
use JSON;
my $version = "0.6.3";
my $version = "0.6.4";