mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
fhem.pl/10_MQTT2_DEVICE.pm: fix json detection (Forum #104956)
git-svn-id: https://svn.fhem.de/fhem/trunk@20460 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
a45cc2cc17
commit
f7cb4789a2
@ -215,7 +215,7 @@ MQTT2_DEVICE_Parse($$)
|
||||
my $cidArr = $modules{MQTT2_DEVICE}{defptr}{cid}{$newCid};
|
||||
return if(!$cidArr);
|
||||
my $add;
|
||||
if(length($value) < 10000 && $value =~ m/^{.*}$/s) {
|
||||
if(length($value) < 10000 && $value =~ m/^\s*{.*}\s*$/s) {
|
||||
my $ret = json2nameValue($value);
|
||||
if(keys %{$ret}) {
|
||||
$topic =~ m,.*/([^/]+),;
|
||||
|
@ -5203,7 +5203,7 @@ json2nameValue($;$$)
|
||||
return (undef, $in);
|
||||
}
|
||||
|
||||
$in = $1 if($in =~ m/^{(.*)}$/s);
|
||||
$in = $1 if($in =~ m/^\s*{(.*)}\s*$/s);
|
||||
|
||||
my $err;
|
||||
while($in =~ m/^\s*"([^"]+)"\s*:\s*(.*)$/s) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user