Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions trakt/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def get_watched(list_type=None, extended=None):
if list_type and list_type not in valid_type:
raise ValueError('list_type must be one of {}'.format(valid_type))

uri = 'sync/watchlist'
uri = 'sync/watched'
if list_type:
uri += '/{}'.format(list_type)

Expand Down Expand Up @@ -394,7 +394,7 @@ def get_collection(list_type=None, extended=None):
if list_type and list_type not in valid_type:
raise ValueError('list_type must be one of {}'.format(valid_type))

uri = 'sync/watchlist'
uri = 'sync/collection'
if list_type:
uri += '/{}'.format(list_type)

Expand Down