From 498043c0ce61f14f1a29f58139b2ec06316f589f Mon Sep 17 00:00:00 2001 From: vuffiraa <> Date: Tue, 1 Oct 2019 20:02:44 +0000 Subject: [PATCH] 70_BRAVIA.pm: fix state "on" while running app mode on android 8 git-svn-id: https://svn.fhem.de/fhem/trunk@20287 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 3 ++- fhem/FHEM/70_BRAVIA.pm | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index 5084cd1e7..060c6b70e 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,6 +1,7 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. -- bugfix: 10_MYSENSORS_DEVICE: Prevent FHEM crash in case of ext. OTA update + - bugfix: 70_BRAVIA: fix state + - bugfix: 10_MYSENSORS_DEVICE: Prevent FHEM crash in case of ext. OTA update - change: 70_BOTVAC: new state "Password missing", added check for robots in account - bugfix: 95_Dashboard: fix warnings diff --git a/fhem/FHEM/70_BRAVIA.pm b/fhem/FHEM/70_BRAVIA.pm index 374d0bb07..edff12ee6 100644 --- a/fhem/FHEM/70_BRAVIA.pm +++ b/fhem/FHEM/70_BRAVIA.pm @@ -1133,6 +1133,9 @@ sub ReceiveCommand($$$) { } $newstate = ProcessCommandData( $param, $return, \@successor ); + } else { + # Android 8: timeshift mode or app mode + $newstate = "on" if ($service eq "getScheduleList"); } if ( defined( $newstate ) ) {