add back MergeMetadataAndImagesByName

This commit is contained in:
Luke Pulverenti
2016-01-27 01:31:31 -05:00
parent eb1ab74759
commit 95ae1c5f7b
3 changed files with 19 additions and 0 deletions

View File

@@ -162,6 +162,8 @@ namespace MediaBrowser.Model.Configuration
/// <value>The dashboard source path.</value>
public string DashboardSourcePath { get; set; }
public bool MergeMetadataAndImagesByName { get; set; }
/// <summary>
/// Gets or sets the image saving convention.
/// </summary>
@@ -211,6 +213,7 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
public ServerConfiguration()
{
MergeMetadataAndImagesByName = true;
Migrations = new string[] { };
ImageSavingConvention = ImageSavingConvention.Compatible;