[Release] Roku Connect integration App and Roku TV Device Handler

Is anyone else having issues with the roku not accepting Channel Commands? Im trying to setup a rule that turns the television on to a certain channel. Everything is working except for the channel command.

groovy.lang.MissingMethodException: No signature of method: user_driver_apwelsh_Roku_TV_710.setChannel() is applicable for argument types: (java.lang.String) values: [8.1]
Possible solutions: setChannel(java.lang.Number) on line 6424 (method setChannel)

Thats the error code im seeing.

When you are passing the channel number, you are sending it as text (string)z it must be sent as a number.

Ive adjust this to a number. The error is gone but nothing is happening. Even just putting the number into the device handler doesnt produce any change.

Please share a screenshot of you rule.

The roku devices have changed the active channel from AntennaInput to Live TV Input. This change prevented my code from sending the key presses. But there are other functional changes in the Live TV app that are also breaking the ability to tune into a specific channel. I am looking into it.
I also removed the useless quiter command, but that a typo (it was supposed to be quieter, but instead of quieter and louder, I went a different route with volume up/down +10 instead. Since the quiter function was never implemented, I removed it.

When you are in the Live TV app, can change channels with the updated code, but the system is far less forgiving. Since I cannot query if the guide is visible or not, I have to assume the Roku is in a state that is can receive channel number key-presses.