mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
fixed user image scaling
This commit is contained in:
parent
c7c72dd1a8
commit
3228f50895
9 changed files with 74 additions and 43 deletions
|
|
@ -123,12 +123,6 @@ namespace MediaBrowser.Model.Configuration
|
|||
/// <value><c>true</c> if [show log window]; otherwise, <c>false</c>.</value>
|
||||
public bool ShowLogWindow { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the recent item days.
|
||||
/// </summary>
|
||||
/// <value>The recent item days.</value>
|
||||
public int RecentItemDays { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated.
|
||||
/// </summary>
|
||||
|
|
@ -227,9 +221,6 @@ namespace MediaBrowser.Model.Configuration
|
|||
|
||||
public NotificationOptions NotificationOptions { get; set; }
|
||||
|
||||
[Obsolete("Please use RequireManualLoginForMobileApps")]
|
||||
public string[] ManualLoginClients { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
|
|
@ -258,8 +249,6 @@ namespace MediaBrowser.Model.Configuration
|
|||
|
||||
RealtimeMonitorDelay = 30;
|
||||
|
||||
RecentItemDays = 10;
|
||||
|
||||
EnableInternetProviders = true; //initial installs will need these
|
||||
|
||||
PathSubstitutions = new PathSubstitution[] { };
|
||||
|
|
@ -295,8 +284,6 @@ namespace MediaBrowser.Model.Configuration
|
|||
UICulture = "en-us";
|
||||
|
||||
NotificationOptions = new NotificationOptions();
|
||||
|
||||
ManualLoginClients = new string[] { };
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue