Added Sonarr v3 #2359

This commit is contained in:
TidusJar 2018-12-05 09:47:06 +00:00
commit c1e2cad252
2 changed files with 9 additions and 6 deletions

View file

@ -180,12 +180,7 @@ namespace Ombi.Core.Senders
// Are we using v3 sonarr?
var sonarrV3 = s.V3;
var languageProfileId = 0;
if (sonarrV3)
{
languageProfileId = s.LanguageProfile;
}
var languageProfileId = s.LanguageProfile;
try
{
@ -216,6 +211,11 @@ namespace Ombi.Core.Senders
}
};
if (sonarrV3)
{
newSeries.languageProfileId = languageProfileId;
}
// Montitor the correct seasons,
// If we have that season in the model then it's monitored!
var seasonsToAdd = GetSeasonsToCreate(model);