cs fix for 8e771d

This commit is contained in:
Bogdan
2024-01-26 12:57:20 +02:00
parent 8e771dc62a
commit 5a0e7415d1
2 changed files with 3 additions and 6 deletions

View File

@@ -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());
}
}