We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25431b0 commit 0259eeaCopy full SHA for 0259eea
plexapi/myplex.py
@@ -647,10 +647,12 @@ def podcasts(self):
647
elem = ElementTree.fromstring(req.text)
648
return self.findItems(elem)
649
650
- def tidal(self, maxresults=50):
+ def tidal(self):
651
""" Returns a list of tidal Hub items :class:`~plexapi.library.Hub`
652
"""
653
- return self.batchingItems(self.MUSIC, maxresults)
+ req = requests.get(self.MUSIC, headers={'X-Plex-Token':self._token})
654
+ elem = ElementTree.fromstring(req.text)
655
+ return self.findItems(elem)
656
657
658
class MyPlexUser(PlexObject):
0 commit comments