mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
Don't bother with extra metadata just yet
This commit is contained in:
parent
f6a1f37a9a
commit
23874f4555
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class Audio(Video): # TODO: inherit from PlexPartialObject, like the Video class
|
|||
self.user = self._find_user(data) # for active sessions
|
||||
self.player = self._find_player(data) # for active sessions
|
||||
self.transcodeSession = self._find_transcodeSession(data)
|
||||
if self.isFullObject():
|
||||
if False:# TODO: add this back with values that make sense ## self.isFullObject():
|
||||
# These are auto-populated when requested
|
||||
self.media = [Media(self.server, elem, self.initpath, self) for elem in data if elem.tag == Media.TYPE]
|
||||
self.countries = [Country(self.server, elem) for elem in data if elem.tag == Country.TYPE]
|
||||
|
|
Loading…
Reference in a new issue