mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
trim search requests
This commit is contained in:
parent
baca0d6244
commit
5c8bd5559d
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
|||
throw new ArgumentNullException("searchTerm");
|
||||
}
|
||||
|
||||
searchTerm = searchTerm.RemoveDiacritics();
|
||||
searchTerm = searchTerm.Trim().RemoveDiacritics();
|
||||
|
||||
var terms = GetWords(searchTerm);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue