fix merge conflicts

This commit is contained in:
Luke Pulverenti
2015-09-20 13:22:34 -04:00
parent 6d3dcd8266
commit e8010955dc
7 changed files with 57 additions and 54 deletions

View File

@@ -44,6 +44,12 @@ namespace MediaBrowser.Model.Configuration
/// <value><c>true</c> if [use HTTPS]; otherwise, <c>false</c>.</value>
public bool EnableHttps { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [enable user specific user views].
/// </summary>
/// <value><c>true</c> if [enable user specific user views]; otherwise, <c>false</c>.</value>
public bool EnableUserSpecificUserViews { get; set; }
/// <summary>
/// Gets or sets the value pointing to the file system where the ssl certiifcate is located..
/// </summary>
@@ -98,12 +104,6 @@ namespace MediaBrowser.Model.Configuration
/// <value><c>true</c> if [disable startup scan]; otherwise, <c>false</c>.</value>
public bool DisableStartupScan { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [enable user views].
/// </summary>
/// <value><c>true</c> if [enable user views]; otherwise, <c>false</c>.</value>
public bool EnableUserViews { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [enable library metadata sub folder].
/// </summary>
@@ -223,7 +223,7 @@ namespace MediaBrowser.Model.Configuration
public bool EnableWindowsShortcuts { get; set; }
public bool EnableVideoFrameByFrameAnalysis { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@@ -274,7 +274,11 @@ namespace MediaBrowser.Model.Configuration
InsecureApps9 = new[]
{
"Chromecast",
"iOS",
"Unknown app",
"iPad",
"iPhone",
"Windows Phone"
};
@@ -577,4 +581,4 @@ namespace MediaBrowser.Model.Configuration
};
}
}
}
}