mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
dropping quote_via for backwards compatibility
seems unneeded now after testing
This commit is contained in:
parent
11ddd239d8
commit
d9e3b9fba5
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ class Video(PlexPartialObject):
|
|||
params['Item[Location][uri]'] = 'library://' + section.uuid + '/item/' + \
|
||||
quote_plus(self.key + '?includeExternalMedia=1')
|
||||
|
||||
data = key + urlencode(params) + '&' + urlencode(titleParam, quote_via=quote)
|
||||
data = key + urlencode(params) + '&' + urlencode(titleParam)
|
||||
return self._server.query(data, method=self._server._session.put)
|
||||
|
||||
def sync(self, videoQuality, client=None, clientId=None, limit=None, unwatched=False, title=None):
|
||||
|
|
Loading…
Reference in a new issue