Manually cast door state to int (#49)
This commit is contained in:
parent
133c4e269d
commit
0da5d44ea1
|
@ -74,7 +74,7 @@ function handleSetState() {
|
|||
die();
|
||||
}
|
||||
|
||||
$door->createEvent((int)($event->time), (bool)($event->isDoorOpen));
|
||||
$door->createEvent((int)($event->time), $event->isDoorOpen ? 1 : 0);
|
||||
echo '{"status": "OK"}';
|
||||
}
|
||||
|
||||
|
@ -90,4 +90,4 @@ function getChanges($items) {
|
|||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue