1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Fixed: Recalculate Custom Format Score in Manual Import

This commit is contained in:
Bogdan
2023-07-25 22:25:04 +03:00
committed by Mark McDowall
parent 3937545e15
commit cda9cf726a
5 changed files with 12 additions and 2 deletions
@@ -2,6 +2,7 @@ using System.Collections.Generic;
using NzbDrone.Core.DecisionEngine;
using NzbDrone.Core.Languages;
using NzbDrone.Core.Qualities;
using Sonarr.Api.V3.CustomFormats;
using Sonarr.Api.V3.Episodes;
using Sonarr.Http.REST;
@@ -18,7 +19,8 @@ namespace Sonarr.Api.V3.ManualImport
public List<Language> Languages { get; set; }
public string ReleaseGroup { get; set; }
public string DownloadId { get; set; }
public List<CustomFormatResource> CustomFormats { get; set; }
public int CustomFormatScore { get; set; }
public IEnumerable<Rejection> Rejections { get; set; }
}
}