mirror of
https://github.com/Jackett/Jackett
synced 2025-03-04 10:48:26 +00:00
Strike bug fix
This commit is contained in:
parent
7f2aa4ccad
commit
1a52731cd2
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ namespace Jackett.Indexers
|
||||||
{
|
{
|
||||||
List<ReleaseInfo> releases = new List<ReleaseInfo>();
|
List<ReleaseInfo> releases = new List<ReleaseInfo>();
|
||||||
|
|
||||||
var searchTerm = query.SanitizedSearchTerm ?? "2015";
|
var searchTerm = string.IsNullOrEmpty(query.SanitizedSearchTerm) ? "2015" : query.SanitizedSearchTerm;
|
||||||
|
|
||||||
var searchString = searchTerm + " " + query.GetEpisodeSearchString();
|
var searchString = searchTerm + " " + query.GetEpisodeSearchString();
|
||||||
var episodeSearchUrl = baseUrl + string.Format(SearchUrl, HttpUtility.UrlEncode(searchString.Trim()));
|
var episodeSearchUrl = baseUrl + string.Format(SearchUrl, HttpUtility.UrlEncode(searchString.Trim()));
|
||||||
|
|
Loading…
Add table
Reference in a new issue