mirror of
https://github.com/Jackett/Jackett
synced 2025-03-06 19:58:38 +00:00
cs fix for 8e771d
This commit is contained in:
parent
8e771dc62a
commit
5a0e7415d1
2 changed files with 3 additions and 6 deletions
|
@ -75,9 +75,6 @@ namespace Jackett.Common.Models.DTO
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
return stringQuery;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -220,17 +220,17 @@ namespace Jackett.Server.Controllers
|
|||
|
||||
if (t.Key == "tmdbid")
|
||||
{
|
||||
request.TmdbId = Int32.Parse(t.Value.ToString());
|
||||
request.TmdbId = int.Parse(t.Value.ToString());
|
||||
}
|
||||
|
||||
if (t.Key == "tvdbid")
|
||||
{
|
||||
request.TvdbId = Int32.Parse(t.Value.ToString());
|
||||
request.TvdbId = int.Parse(t.Value.ToString());
|
||||
}
|
||||
|
||||
if (t.Key == "tvmazeid")
|
||||
{
|
||||
request.TvMazeId = Int32.Parse(t.Value.ToString());
|
||||
request.TvMazeId = int.Parse(t.Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue