diff --git a/fhem/CHANGED b/fhem/CHANGED index a511c1bb8..47c5deccf 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # 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: 70_BRAVIA: check state before renewing registration - bugfix: 38_netatmo: fixed login problems by updating to new auth method - change: 74_AutomowerConnect: Common.pm try to reconnect if ws is open but not ready, improve leaving path colorization if position polling is diff --git a/fhem/FHEM/70_BRAVIA.pm b/fhem/FHEM/70_BRAVIA.pm index 07553dc84..728fce456 100644 --- a/fhem/FHEM/70_BRAVIA.pm +++ b/fhem/FHEM/70_BRAVIA.pm @@ -791,7 +791,7 @@ sub SendCommand { my $return; my $requestFormat = ReadingsVal($name, "requestFormat", ""); - if ($service ne "register" && $service ne "getStatus") { + if ($service ne "register" && $service ne "getStatus" && ReadingsVal($name, "state", "") eq "on") { return if CheckRegistration($hash, $service, $cmd, $param, @successor); }