Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/2.0.z' into sync-208
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert committed Jul 12, 2024
2 parents fce0789 + 4b9d0a1 commit 819c7cd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# If you want to get_images, you'll also need convert from ImageMagick
##########################################################################

VERSION := 2.0.7
VERSION := 2.0.8

## usage

Expand Down
2 changes: 1 addition & 1 deletion manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
title=Jellyfin
major_version=2
minor_version=0
build_version=7
build_version=8

### Main Menu Icons / Channel Poster Artwork

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jellyfin-roku",
"type": "module",
"version": "2.0.7",
"version": "2.0.8",
"description": "Roku app for Jellyfin media server",
"dependencies": {
"@rokucommunity/bslib": "0.1.1",
Expand Down
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 819c7cd

Please sign in to comment.