1
0
Fork 0
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:
Bogdan 2024-01-26 12:57:20 +02:00
parent 8e771dc62a
commit 5a0e7415d1
2 changed files with 3 additions and 6 deletions

View file

@ -75,9 +75,6 @@ namespace Jackett.Common.Models.DTO
}
}
return stringQuery;
}
}

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