From 6d4ae353392ba0863940f8cb251415b7e65faf0f Mon Sep 17 00:00:00 2001 From: Jason Lawrence Date: Thu, 24 Oct 2019 22:23:48 -0500 Subject: [PATCH] Workaround for Android TV client commands --- plexapi/client.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plexapi/client.py b/plexapi/client.py index 38daa38d..cd17c7b6 100644 --- a/plexapi/client.py +++ b/plexapi/client.py @@ -205,7 +205,10 @@ class PlexClient(PlexObject): except ElementTree.ParseError: # Workaround for players which don't return valid XML on successful commands # - Plexamp: `b'OK'` - if self.product in ('Plexamp',): + if self.product in ( + 'Plexamp', + 'Plex for Android (TV)', + ): return raise