mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
Cast plexapi.media.Poster selected to bool
This commit is contained in:
parent
7f3d8cfb8d
commit
22b162b3c4
1 changed files with 1 additions and 1 deletions
|
@ -731,7 +731,7 @@ class Poster(PlexObject):
|
|||
self._data = data
|
||||
self.key = data.attrib.get('key')
|
||||
self.ratingKey = data.attrib.get('ratingKey')
|
||||
self.selected = data.attrib.get('selected')
|
||||
self.selected = cast(bool, data.attrib.get('selected'))
|
||||
self.thumb = data.attrib.get('thumb')
|
||||
|
||||
def select(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue