Skip to content

Commit

Permalink
fix: phone phome aka network connect broken in 2.9
Browse files Browse the repository at this point in the history
fixes #36 broke with commit d745d69
  • Loading branch information
lart2150 committed Jan 5, 2025
1 parent f48bd7c commit 239dd7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/tivo/kmttg/rpc/Remote.java
Original file line number Diff line number Diff line change
Expand Up @@ -691,9 +691,9 @@ else if (type.equals("PhoneHome")) {
// Request a network connection
json.put("bodyId", bodyId_get());
if (away) {
req = RpcRequest("phoneHomeRequest", false, json);
req = RpcRequest("phoneHomeSend", false, json);
} else {
req = RpcRequest("phoneHomeSend", false, json);
req = RpcRequest("phoneHomeRequest", false, json);
}
}
else if (type.equals("WhatsOn")) {
Expand Down

0 comments on commit 239dd7e

Please sign in to comment.