File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -813,8 +813,6 @@ class Playable:
813813 Things were getting mixed up a bit when dealing with Shows, Season, Artists,
814814 Albums which are all not playable.
815815
816- This class
817-
818816 Attributes:
819817 playlistItemID (int): Playlist item ID (only populated for :class:`~plexapi.playlist.Playlist` items).
820818 playQueueItemID (int): PlayQueue item ID (only populated for :class:`~plexapi.playlist.PlayQueue` items).
@@ -1005,10 +1003,7 @@ class PlexSession:
10051003 def _loadData (self , data ):
10061004 """ Load attribute values from Plex XML response. """
10071005 self .live = utils .cast (bool , data .attrib .get ('live' , '0' ))
1008- self .player = self .findItem (data , etag = 'Player' )
1009- self .session = self .findItem (data , etag = 'Session' )
10101006 self .sessionKey = utils .cast (int , data .attrib .get ('sessionKey' ))
1011- self .transcodeSession = self .findItem (data , etag = 'TranscodeSession' )
10121007
10131008 user = data .find ('User' )
10141009 self ._username = user .attrib .get ('title' )
You can’t perform that action at this time.
0 commit comments