Skip to content

Commit

Permalink
Merge pull request #1826 from kyleslokafrey/bug-watch-button-resume-p…
Browse files Browse the repository at this point in the history
…oint
  • Loading branch information
cewert authored Jul 12, 2024
2 parents ba5ef41 + fb3cbca commit 4b9d0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/api/UserLibrary.bs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sub MarkItemWatched(id as string)
dateStr = date.ToISOString()
url = Substitute("Users/{0}/PlayedItems/{1}", m.global.session.user.id, id)
req = APIRequest(url)
postVoid(req, FormatJson({ "DatePlayed": dateStr }))
postVoid(req, FormatJson({ "DatePlayed": dateStr, "PlaybackPositionTicks": 0 }))
end sub

function UnmarkItemWatched(id as string)
Expand Down

0 comments on commit 4b9d0a1

Please sign in to comment.