WIP - Jellyfin multi library

This commit is contained in:
Drew Weymouth
2025-07-15 08:57:20 -07:00
parent c5c80406d6
commit f4e84d97ab
5 changed files with 28 additions and 5 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ func (j *jellyfinMediaProvider) SearchAll(searchQuery string, maxResults int) ([
wg.Add(1)
go func() {
g, e := j.client.GetGenres(jellyfin.Paging{})
g, e := j.client.GetGenres(jellyfin.Paging{}, "")
if e == nil {
genres = sharedutil.FilterSlice(g, func(g jellyfin.NameID) bool {
return helpers.AllTermsMatch(strings.ToLower(sanitize.Accents(g.Name)), queryLowerWords)