1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-01 12:46:23 +00:00

anidub: fix search, don't replace spaces with + (#10438)

This commit is contained in:
ilike2burnthing 2020-12-08 02:16:41 +00:00 committed by GitHub
parent 81c205bd33
commit 2438d54252
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
}
}
}