mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-23 10:34:43 +01:00
fixed remote control flyout
This commit is contained in:
@@ -657,7 +657,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets a value indicating whether [enable internet providers].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [enable internet providers]; otherwise, <c>false</c>.</value>
|
||||
public bool? EnableInternetProviders { get; set; }
|
||||
public bool? LockData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance can resume.
|
||||
|
||||
@@ -9,18 +9,18 @@ namespace MediaBrowser.Model.Entities
|
||||
/// <summary>
|
||||
/// The file system
|
||||
/// </summary>
|
||||
FileSystem = 1,
|
||||
FileSystem = 0,
|
||||
/// <summary>
|
||||
/// The remote
|
||||
/// </summary>
|
||||
Remote = 2,
|
||||
Remote = 1,
|
||||
/// <summary>
|
||||
/// The virtual
|
||||
/// </summary>
|
||||
Virtual = 3,
|
||||
Virtual = 2,
|
||||
/// <summary>
|
||||
/// The offline
|
||||
/// </summary>
|
||||
Offline = 4
|
||||
Offline = 3
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@ namespace MediaBrowser.Model.Notifications
|
||||
{
|
||||
public enum NotificationLevel
|
||||
{
|
||||
Normal = 1,
|
||||
Warning = 2,
|
||||
Error = 3
|
||||
Normal = 0,
|
||||
Warning = 1,
|
||||
Error = 2
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user