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 30ec806 commit 3af2a5aCopy full SHA for 3af2a5a
plexapi/myplex.py
@@ -537,7 +537,7 @@ class MyPlexResource(PlexObject):
537
synced (bool): Unknown (possibly True if the resource has synced content?)
538
"""
539
TAG = 'Device'
540
- key = 'https://plex.tv/api/resources?includeHttps=1'
+ key = 'https://plex.tv/api/resources?includeHttps=1&includeRelay=1'
541
542
def _loadData(self, data):
543
self._data = data
@@ -615,6 +615,7 @@ def _loadData(self, data):
615
self.uri = data.attrib.get('uri')
616
self.local = utils.cast(bool, data.attrib.get('local'))
617
self.httpuri = 'http://%s:%s' % (self.address, self.port)
618
+ self.relay = utils.cast(bool, data.attrib.get('relay'))
619
620
621
class MyPlexDevice(PlexObject):
0 commit comments