mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-29 15:10:20 +00:00
Merge pull request #798 from JonnyWong16/bugfix/sync_header
Fix sync headers
This commit is contained in:
commit
9cc71090c6
2 changed files with 4 additions and 6 deletions
|
@ -623,9 +623,7 @@ class MyPlexAccount(PlexObject):
|
||||||
}
|
}
|
||||||
|
|
||||||
url = SyncList.key.format(clientId=client.clientIdentifier)
|
url = SyncList.key.format(clientId=client.clientIdentifier)
|
||||||
data = self.query(url, method=self._session.post, headers={
|
data = self.query(url, method=self._session.post, params=params)
|
||||||
'Content-type': 'x-www-form-urlencoded',
|
|
||||||
}, params=params)
|
|
||||||
|
|
||||||
return SyncItem(self, data, None, clientIdentifier=client.clientIdentifier)
|
return SyncItem(self, data, None, clientIdentifier=client.clientIdentifier)
|
||||||
|
|
||||||
|
|
|
@ -178,19 +178,19 @@ class MediaSettings(object):
|
||||||
photoQuality (int): photo quality on scale 0 to 100.
|
photoQuality (int): photo quality on scale 0 to 100.
|
||||||
photoResolution (str): maximum photo resolution, formatted as WxH (e.g. `1920x1080`).
|
photoResolution (str): maximum photo resolution, formatted as WxH (e.g. `1920x1080`).
|
||||||
videoResolution (str): maximum video resolution, formatted as WxH (e.g. `1280x720`, may be empty).
|
videoResolution (str): maximum video resolution, formatted as WxH (e.g. `1280x720`, may be empty).
|
||||||
subtitleSize (int|str): unknown, usually equals to 0, may be empty string.
|
subtitleSize (int): subtitle size on scale 0 to 100.
|
||||||
videoQuality (int): video quality on scale 0 to 100.
|
videoQuality (int): video quality on scale 0 to 100.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, maxVideoBitrate=4000, videoQuality=100, videoResolution='1280x720', audioBoost=100,
|
def __init__(self, maxVideoBitrate=4000, videoQuality=100, videoResolution='1280x720', audioBoost=100,
|
||||||
musicBitrate=192, photoQuality=74, photoResolution='1920x1080', subtitleSize=''):
|
musicBitrate=192, photoQuality=74, photoResolution='1920x1080', subtitleSize=100):
|
||||||
self.audioBoost = plexapi.utils.cast(int, audioBoost)
|
self.audioBoost = plexapi.utils.cast(int, audioBoost)
|
||||||
self.maxVideoBitrate = plexapi.utils.cast(int, maxVideoBitrate) if maxVideoBitrate != '' else ''
|
self.maxVideoBitrate = plexapi.utils.cast(int, maxVideoBitrate) if maxVideoBitrate != '' else ''
|
||||||
self.musicBitrate = plexapi.utils.cast(int, musicBitrate) if musicBitrate != '' else ''
|
self.musicBitrate = plexapi.utils.cast(int, musicBitrate) if musicBitrate != '' else ''
|
||||||
self.photoQuality = plexapi.utils.cast(int, photoQuality) if photoQuality != '' else ''
|
self.photoQuality = plexapi.utils.cast(int, photoQuality) if photoQuality != '' else ''
|
||||||
self.photoResolution = photoResolution
|
self.photoResolution = photoResolution
|
||||||
self.videoResolution = videoResolution
|
self.videoResolution = videoResolution
|
||||||
self.subtitleSize = subtitleSize
|
self.subtitleSize = plexapi.utils.cast(int, subtitleSize) if subtitleSize != '' else ''
|
||||||
self.videoQuality = plexapi.utils.cast(int, videoQuality) if videoQuality != '' else ''
|
self.videoQuality = plexapi.utils.cast(int, videoQuality) if videoQuality != '' else ''
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Reference in a new issue