2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 17:48:44 +00:00

98_Hyperion: fix for crash bug

git-svn-id: https://svn.fhem.de/fhem/trunk@12075 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
deespe 2016-08-27 02:33:59 +00:00
parent 8eeb5dea4f
commit 3e12114f92

View File

@ -216,14 +216,14 @@ sub Hyperion_Read($)
fhem "sleep 1; get $name statusRequest" if (AttrVal($name,"queryAfterSet",1) == 1 || !$hash->{INTERVAL});
return undef;
}
elsif ($1 =~ /^.+"success":true\}$/)
elsif ($1 =~ /^.+\},"success":true\}$/)
{
######################
# delete old reading #
fhem "deletereading $name previous_mode" if (defined(ReadingsVal($name,"previous_mode",undef)));
######################
my $obj = eval {from_json($result)};
my $data = $obj->{info};
my $obj = eval {from_json($result)};
my $data = $obj->{info};
my $prio = (defined($data->{priorities}->[0]->{priority})) ? $data->{priorities}->[0]->{priority} : undef;
my $duration = (defined($data->{priorities}->[0]->{duration_ms}) && $data->{priorities}->[0]->{duration_ms} > 999) ? int($data->{priorities}->[0]->{duration_ms} / 1000) : 0;
$duration = ($duration) >= 1 ? $duration : "infinite";