From 2a330d6899af4488993517dce8a7b8e6b09e8971 Mon Sep 17 00:00:00 2001 From: KernSani Date: Tue, 4 May 2021 20:15:31 +0000 Subject: [PATCH] 69_SoftliqCloud.pm: Fix Substr-Typo git-svn-id: https://svn.fhem.de/fhem/trunk@24383 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/69_SoftliqCloud.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fhem/FHEM/69_SoftliqCloud.pm b/fhem/FHEM/69_SoftliqCloud.pm index 88708d1bb..1ef4da7ea 100644 --- a/fhem/FHEM/69_SoftliqCloud.pm +++ b/fhem/FHEM/69_SoftliqCloud.pm @@ -21,8 +21,6 @@ # ############################################################################## # Changelog: -# 0.1.07: - 2021-04-30 - Split JSON strings to avoid processing multiple root nodes, part 2 -# - Changed password storage to (new) common package # 0.1.06: - 2021-04-26 - Split JSON strings to avoid processing multiple root nodes # 0.1.05: Fixed setting numeric parameters # 0.1.04: ANother fix to avoid "garbage" in JSON @@ -1990,7 +1988,7 @@ sub wsReadDevIo { my $index = index($buf, '}{'); if ($index > 0) { Log3 ($name, LOG_RECEIVE, "[$name] - Splitting double-JSON buffer"); - @bufs = split(/,/xsm,join($COMMA,substr($buf,0,$index),Substr($buf,$index+1))); + @bufs = split(/,/xsm,join($COMMA,substr($buf,0,$index),substr($buf,$index+1))); } else { push(@bufs,$buf);