Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5c8bd5559d2b8706c423c81918ec42c7dc8a5550 You should set ROOT_URL correctly, otherwise the web may not work correctly.

trim search requests

pull/702/head
Luke Pulverenti 9 years ago
parent baca0d6244
commit 5c8bd5559d

@ -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…
Cancel
Save