Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit d893ae4

Browse files
authored
Merge pull request #2137 from jellyfin/jf-fixes-2136-movie-library-crash
Limit Tag filter to users with 100 or less tags
2 parents bed98ab + 79433a1 commit d893ae4

File tree

4 files changed

+4
-24
lines changed

4 files changed

+4
-24
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# If you want to get_images, you'll also need convert from ImageMagick
44
##########################################################################
55

6-
VERSION := 2.3.0
6+
VERSION := 2.3.1
77

88
## usage
99

components/ItemGrid/MovieLibraryView.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ sub FilterDataLoaded(msg)
387387
options.filter.push({ "Title": tr("Years"), "Name": "Years", "Options": data.Years, "Delimiter": ",", "CheckedState": [] })
388388
end if
389389

390-
if isValid(data.Tags) and data.Tags.Count() > 0
390+
if isValid(data.Tags) and data.Tags.Count() > 0 and data.Tags.Count() < 100 ' Limit tags to 100 otherwise some Rokus will crash
391391
options.filter.push({ "Title": tr("Tags"), "Name": "Tags", "Options": data.Tags, "Delimiter": ",", "CheckedState": [] })
392392
end if
393393
end if

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jellyfin-roku",
33
"type": "module",
4-
"version": "2.3.0",
4+
"version": "2.3.1",
55
"description": "Roku app for Jellyfin media server",
66
"dependencies": {
77
"@rokucommunity/bslib": "0.1.1",
Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,6 @@
11
[
22
{
3-
"description": "Next Up behavior update for TV Shows",
4-
"author": "Renbo2024"
5-
},
6-
{
7-
"description": "Hide Time of Completion OSD for Hide Clocks setting",
8-
"author": "Renbo2024"
9-
},
10-
{
11-
"description": "Add channel number to Live TV channel title",
12-
"author": "Michael Cresswell"
13-
},
14-
{
15-
"description": "Enable OSD for intro videos",
16-
"author": "sivart73"
17-
},
18-
{
19-
"description": "Show user icon for saved users",
20-
"author": "SonicMastr"
21-
},
22-
{
23-
"description": "Add Live TV Channels, People and Playlists to search",
3+
"description": "Fix crash on movie library if it contains a lot of Tags",
244
"author": "jimdogx"
255
}
266
]

0 commit comments

Comments
 (0)