Skip to content

Commit

Permalink
Merge pull request #1789 from JBeresford/fix-scrobble-pausing
Browse files Browse the repository at this point in the history
Fix pausing of Trakt scrobbling
  • Loading branch information
glensc authored Feb 5, 2024
2 parents 598685f + 78d8990 commit 2da5aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plextraktsync/queue/TraktScrobbleWorker.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def scrobble_update(self, scrobbler: Scrobbler, progress: float):
@time_limit()
@retry()
def scrobble_pause(self, scrobbler: Scrobbler, progress: float):
return scrobbler.update(progress)
return scrobbler.pause(progress)

@rate_limit()
@time_limit()
Expand Down

0 comments on commit 2da5aae

Please sign in to comment.