Skip to content

Commit

Permalink
change naming to RTL Plus
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-kraus committed Jun 28, 2023
1 parent 5e64a51 commit 9856657
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion androidtv/constants.py
Expand Up @@ -577,7 +577,7 @@ class DeviceEnum(IntEnum):
APP_TED: "TED",
APP_TUNEIN: "TuneIn Radio",
APP_TVHEADEND: "DreamPlayer TVHeadend",
APP_TVNOW: "TV NOW",
APP_TVNOW: "RTL Plus",
APP_TWITCH: "Twitch",
APP_TWITCH_FIRETV: "Twitch (FireTV)",
APP_VEVO: "Vevo",
Expand Down
2 changes: 1 addition & 1 deletion androidtv/firetv/base_firetv.py
Expand Up @@ -178,7 +178,7 @@ def _update(self, screen_on, awake, wake_lock_size, current_app, media_session_s
else:
state = constants.STATE_IDLE

# TV NOW (Germany)
# RTL Plus (Germany)
elif current_app == constants.APP_TVNOW:
if wake_lock_size == 3:
state = constants.STATE_PAUSED
Expand Down
2 changes: 1 addition & 1 deletion tests/test_firetv_sync.py
Expand Up @@ -326,7 +326,7 @@ def test_state_detection(self):
(constants.STATE_IDLE, constants.APP_SPOTIFY, [constants.APP_SPOTIFY], None),
)

# TV NOW (Germany)
# RTL Plus (Germany)
self.assertUpdate(
[True, True, 3, constants.APP_TVNOW, 1, [constants.APP_TVNOW], None],
(constants.STATE_PAUSED, constants.APP_TVNOW, [constants.APP_TVNOW], None),
Expand Down

0 comments on commit 9856657

Please sign in to comment.