mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 14:51:01 +00:00
TVstore: Correct Sonar Test (#4745)
This commit is contained in:
parent
e66a839fb3
commit
a6c821762a
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ namespace Jackett.Common.Indexers
|
|||
|
||||
string searchString = "";
|
||||
/* SearcString format is the following: Seriesname 1X09 */
|
||||
if (!query.SearchTerm.Equals(""))
|
||||
if (query.SearchTerm != null && !query.SearchTerm.Equals(""))
|
||||
{
|
||||
searchString += query.SanitizedSearchTerm;
|
||||
if (query.Season != 0)
|
||||
|
|
Loading…
Reference in a new issue