mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Fixed the login issue and pass Radarr the year #990
This commit is contained in:
parent
3d2209d163
commit
a1fb4018b5
5 changed files with 13 additions and 8 deletions
|
@ -63,7 +63,7 @@ namespace Ombi.Api
|
|||
return obj;
|
||||
}
|
||||
|
||||
public RadarrAddMovie AddMovie(int tmdbId, string title, int qualityId, string rootPath, string apiKey, Uri baseUrl, bool searchNow = false)
|
||||
public RadarrAddMovie AddMovie(int tmdbId, string title, int year, int qualityId, string rootPath, string apiKey, Uri baseUrl, bool searchNow = false)
|
||||
{
|
||||
var request = new RestRequest
|
||||
{
|
||||
|
@ -78,7 +78,8 @@ namespace Ombi.Api
|
|||
qualityProfileId = qualityId,
|
||||
rootFolderPath = rootPath,
|
||||
titleSlug = title,
|
||||
monitored = true
|
||||
monitored = true,
|
||||
year = year
|
||||
};
|
||||
|
||||
if (searchNow)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue