mirror of
https://github.com/pkkid/python-plexapi
synced 2025-02-16 21:08:27 +00:00
Fixed a typo caused by a naming convention refactor
This commit is contained in:
parent
6becf6aaa6
commit
b6e063c702
1 changed files with 1 additions and 1 deletions
|
@ -39,5 +39,5 @@ class SyncItem(object):
|
|||
|
||||
def markAsDone(self, sync_id):
|
||||
server = self.server().connect()
|
||||
uri = '/sync/{0}/{1}/files/{2}/downloaded'.format(self.device.uuid, server.machineIdentifier, sync_id)
|
||||
uri = '/sync/{0}/{1}/files/{2}/downloaded'.format(self.device.clientIdentifier, server.machineIdentifier, sync_id)
|
||||
server.query(uri, method=requests.put)
|
||||
|
|
Loading…
Add table
Reference in a new issue