mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
rework shutdown
This commit is contained in:
@@ -25,7 +25,7 @@ namespace MediaBrowser.Controller.Drawing
|
||||
|
||||
public int? MaxHeight { get; set; }
|
||||
|
||||
public int? Quality { get; set; }
|
||||
public int Quality { get; set; }
|
||||
|
||||
public List<IImageEnhancer> Enhancers { get; set; }
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace MediaBrowser.Controller.Drawing
|
||||
|
||||
public bool HasDefaultOptionsWithoutSize(string originalImagePath)
|
||||
{
|
||||
return (!Quality.HasValue || Quality.Value == 100) &&
|
||||
return (Quality == 100) &&
|
||||
IsOutputFormatDefault(originalImagePath) &&
|
||||
!AddPlayedIndicator &&
|
||||
PercentPlayed.Equals(0) &&
|
||||
|
||||
Reference in New Issue
Block a user