diff --git a/fhem/CHANGED b/fhem/CHANGED index 21fb99ace..e653112de 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. + - change: 70_BRAVIA: set remoteControl supports command codes - change: 98_dewpoint: Consolidated and corrected formulas for dewpoint (Forum #78359) - fix: 00_SIGNALduino: Fix Bresser Sensor and perl sensor diff --git a/fhem/FHEM/70_BRAVIA.pm b/fhem/FHEM/70_BRAVIA.pm index 060aa74ed..6af1bed63 100644 --- a/fhem/FHEM/70_BRAVIA.pm +++ b/fhem/FHEM/70_BRAVIA.pm @@ -1788,7 +1788,8 @@ sub BRAVIA_GetRemotecontrolCommand($) { return $commands; } else { - return ""; + # return command itself if not mapped + return $command; } }