Added Sonarr v3 #2359

pull/2696/head
TidusJar 6 years ago
parent a69637a3fb
commit c1e2cad252

@ -27,6 +27,9 @@ namespace Ombi.Api.Sonarr.Models
public int id { get; set; }
public List<SonarrImage> images { get; set; }
// V3 Property
public int languageProfileId { get; set; }
/// <summary>
/// This is for us
/// </summary>

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

Loading…
Cancel
Save