Upstream changed the suffix for up events as per https://github.com/LibreELEC/LibreELEC.tv/pull/1281
@@ -107,7 +107,7 @@ void InputLIRC::read(int handle)
// it makes GUI unusable
if ((repeatCount % 3) == 0)
{
- bool up = (command.endsWith("_UP") && (command != "KEY_UP"));
+ bool up = command.endsWith("_LIRCUP");
emit receivedInput("LIRC", command, up ? InputBase::KeyUp : InputBase::KeyDown);
}