2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-19 00:26:03 +00:00

69_SoftliqCloud.pm: Fixed reading of paramter list

git-svn-id: https://svn.fhem.de/fhem/trunk@24303 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
KernSani 2021-04-21 20:08:48 +00:00
parent a368aebd9e
commit 3a35ac03d5

View File

@ -21,6 +21,7 @@
#
##############################################################################
# Changelog:
# 0.1.06: Fixed reading the paramter list (119939/1151016)
# 0.1.05: Fixed setting numeric parameters
# 0.1.04: ANother fix to avoid "garbage" in JSON
# 0.1.03: Improve error handling
@ -53,7 +54,7 @@ use utf8;
use Digest::MD5 qw(md5);
my $version = "0.1.05";
my $version = "0.1.06";
my $missingModul = '';
eval 'use MIME::Base64::URLSafe;1' or $missingModul .= 'MIME::Base64::URLSafe ';
@ -1262,7 +1263,7 @@ sub getParam {
header => $header,
url => "https://prod-eu-gruenbeck-api.azurewebsites.net/api/devices/"
. ReadingsVal( $name, 'id', $EMPTY )
. '/parameters?api-version=2020-08-03',
. '/parameters?api-version=2019-08-09',
callback => \&parseParam,
hash => $hash
};