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 int id { get; set; }
public List<SonarrImage> images { get; set; } public List<SonarrImage> images { get; set; }
// V3 Property
public int languageProfileId { get; set; }
/// <summary> /// <summary>
/// This is for us /// This is for us
/// </summary> /// </summary>

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

Loading…
Cancel
Save