1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Revert "Add SizeOnDisk and HasFile to MovieResource"

This reverts commit 0ae8952b38.
This commit is contained in:
Bogdan 2024-01-17 07:00:42 +02:00
parent fcd187970c
commit 84c2d7f69d

View File

@ -50,12 +50,13 @@ public MovieResource()
public string YouTubeTrailerId { get; set; }
public string Studio { get; set; }
public bool HasFile { get; set; }
// View & Edit
public string Path { get; set; }
public int QualityProfileId { get; set; }
// Compatibility
public bool HasFile { get; set; }
// Editing Only
public bool Monitored { get; set; }
public MovieStatusType MinimumAvailability { get; set; }
@ -90,8 +91,6 @@ public static MovieResource ToResource(this Movie model, int availDelay, MovieTr
return null;
}
var size = model.MovieFile?.Size ?? 0;
var movieFile = model.MovieFile?.ToResource(model, upgradableSpecification, formatCalculationService);
var translatedTitle = movieTranslation?.Title ?? model.Title;
@ -110,9 +109,7 @@ public static MovieResource ToResource(this Movie model, int availDelay, MovieTr
InCinemas = model.MovieMetadata.Value.InCinemas,
PhysicalRelease = model.MovieMetadata.Value.PhysicalRelease,
DigitalRelease = model.MovieMetadata.Value.DigitalRelease,
HasFile = model.HasFile,
SizeOnDisk = size,
Status = model.MovieMetadata.Value.Status,
Overview = translatedOverview,