mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-29 23:12:39 +01:00
Fixed: File Size in Custom Formats
This commit is contained in:
parent
2fb5655789
commit
0844cfb635
@ -88,6 +88,11 @@ namespace NzbDrone.Core.DecisionEngine
|
||||
}
|
||||
}
|
||||
|
||||
if (parsedEpisodeInfo != null && report.Size > 0)
|
||||
{
|
||||
parsedEpisodeInfo.ExtraInfo.Add("Size", report.Size);
|
||||
}
|
||||
|
||||
if (parsedEpisodeInfo != null && !parsedEpisodeInfo.SeriesTitle.IsNullOrWhiteSpace())
|
||||
{
|
||||
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, report.TvdbId, report.TvRageId, searchCriteria);
|
||||
|
Loading…
Reference in New Issue
Block a user