mirror of https://github.com/Jackett/Jackett
anidub: fix search, don't replace spaces with + (#10438)
This commit is contained in:
parent
81c205bd33
commit
2438d54252
|
@ -615,8 +615,7 @@ namespace Jackett.Common.Indexers
|
|||
searchQuery += $" TV-{query.Season}";
|
||||
}
|
||||
|
||||
// Search is normalized with '+' instead of spaces
|
||||
return searchQuery.ToLowerInvariant().Replace(" ", "+");
|
||||
return searchQuery.ToLowerInvariant();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue