mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-17 03:33:46 +01:00
update live tv data transfer
This commit is contained in:
@@ -29,7 +29,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
|
||||
public MetadataOptions(int backdropLimit, int minBackdropWidth)
|
||||
{
|
||||
List<ImageOption> imageOptions = new List<ImageOption>
|
||||
ImageOptions = new[]
|
||||
{
|
||||
new ImageOption
|
||||
{
|
||||
@@ -39,7 +39,6 @@ namespace MediaBrowser.Model.Configuration
|
||||
}
|
||||
};
|
||||
|
||||
ImageOptions = imageOptions.ToArray();
|
||||
DisabledMetadataSavers = new string[] { };
|
||||
LocalMetadataReaderOrder = new string[] { };
|
||||
|
||||
|
||||
@@ -15,18 +15,18 @@ namespace MediaBrowser.Model.Configuration
|
||||
/// Gets or sets the plugins.
|
||||
/// </summary>
|
||||
/// <value>The plugins.</value>
|
||||
public List<MetadataPlugin> Plugins { get; set; }
|
||||
public MetadataPlugin[] Plugins { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the supported image types.
|
||||
/// </summary>
|
||||
/// <value>The supported image types.</value>
|
||||
public List<ImageType> SupportedImageTypes { get; set; }
|
||||
public ImageType[] SupportedImageTypes { get; set; }
|
||||
|
||||
public MetadataPluginSummary()
|
||||
{
|
||||
SupportedImageTypes = new List<ImageType>();
|
||||
Plugins = new List<MetadataPlugin>();
|
||||
SupportedImageTypes = new ImageType[] { };
|
||||
Plugins = new MetadataPlugin[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user