mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
fixes #588 - Add option to use xbmc convention when saving images
This commit is contained in:
@@ -228,12 +228,15 @@ namespace MediaBrowser.Model.Configuration
|
||||
|
||||
public bool EnableVideoImageExtraction { get; set; }
|
||||
|
||||
public ImageSavingConvention ImageSavingConvention { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
public ServerConfiguration()
|
||||
: base()
|
||||
{
|
||||
ImageSavingConvention = ImageSavingConvention.Legacy;
|
||||
HttpServerPortNumber = 8096;
|
||||
LegacyWebSocketPortNumber = 8945;
|
||||
EnableHttpLevelLogging = true;
|
||||
@@ -277,4 +280,10 @@ namespace MediaBrowser.Model.Configuration
|
||||
SeasonZeroDisplayName = "Specials";
|
||||
}
|
||||
}
|
||||
|
||||
public enum ImageSavingConvention
|
||||
{
|
||||
Legacy,
|
||||
Compatible
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user