From d0b17fb9446932bc4f1267811df114f6036f0fea Mon Sep 17 00:00:00 2001 From: delmar <> Date: Tue, 14 Jan 2020 13:08:19 +0000 Subject: [PATCH] 70_ONKYO_AVR: fixed command for previous title (thx Fusssel) git-svn-id: https://svn.fhem.de/fhem/trunk@20975 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/70_ONKYO_AVR.pm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index 3216cac5a..c0a7f5723 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_ONKYO_AVR: fixed command for previous title (thx Fusssel) - feature: 70_ONKYO_AVR: introduced 'set rawCommand' - change: 98_todoist: removed Attribute "sortTasks" / better commandref better move in widget (not delete and add) diff --git a/fhem/FHEM/70_ONKYO_AVR.pm b/fhem/FHEM/70_ONKYO_AVR.pm index 0d1d54585..19a1e4ee0 100644 --- a/fhem/FHEM/70_ONKYO_AVR.pm +++ b/fhem/FHEM/70_ONKYO_AVR.pm @@ -949,7 +949,7 @@ sub ONKYO_AVR_Set($$$) { ONKYO_AVR_SendCommand( $hash, "net-usb", lc( @$a[2] ) ); } elsif ( lc( @$a[2] ) eq "prev" ) { - $return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdown" ); + $return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdn" ); } elsif ( lc( @$a[2] ) eq "next" ) { $return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trup" ); @@ -1041,7 +1041,7 @@ sub ONKYO_AVR_Set($$$) { "Device power is turned off, this function is unavailable at that stage."; } else { - $return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdown" ); + $return = ONKYO_AVR_SendCommand( $hash, "net-usb", "trdn" ); } }