Skip to content

Commit 16ff859

Browse files
committed
Limit Tag filter to users with 25 or less tags
1 parent bed98ab commit 16ff859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/ItemGrid/MovieLibraryView.bs

+1-1
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() < 25 ' Limit tags to 25 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

0 commit comments

Comments
 (0)