mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-30 05:53:41 +02:00
cs fix for 8e771d
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user