rename LG TV -> Cuddlevision

This commit is contained in:
2024-05-15 07:50:38 +00:00
parent 4c1b1282d6
commit ee43fcdb89
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ logger = logging.getLogger(__name__)
# map from known devices -> required flags
DEVICE_MAP = {
"Theater TV": [],
"[LG] webOS TV OLED55C9PUA": [ "-usewav" ],
"Cuddlevision": [ "-usewav" ],
}
def get_ranked_ip_addrs():

View File

@@ -48,7 +48,7 @@ class Device:
# ranked in order of preference
KNOWN_DEVICES = [
Device("Theater TV", Compat.RenameToMp4),
Device("[LG] webOS TV OLED55C9PUA", Compat.Default),
Device("Cuddlevision", Compat.Default),
]
class Go2TvParser: