2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

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
This commit is contained in:
delmar 2020-01-14 13:08:19 +00:00
parent 4d25d744b1
commit d0b17fb944
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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" );
}
}