mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-23 10:36:43 +00:00
fixed themoviedb search returning no results
This commit is contained in:
@@ -9,18 +9,18 @@ namespace MediaBrowser.Model.Entities
|
||||
/// <summary>
|
||||
/// The file system
|
||||
/// </summary>
|
||||
FileSystem,
|
||||
FileSystem = 1,
|
||||
/// <summary>
|
||||
/// The remote
|
||||
/// </summary>
|
||||
Remote,
|
||||
Remote = 2,
|
||||
/// <summary>
|
||||
/// The virtual
|
||||
/// </summary>
|
||||
Virtual,
|
||||
Virtual = 3,
|
||||
/// <summary>
|
||||
/// The offline
|
||||
/// </summary>
|
||||
Offline
|
||||
Offline = 4
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@ namespace MediaBrowser.Model.Notifications
|
||||
{
|
||||
public enum NotificationLevel
|
||||
{
|
||||
Normal,
|
||||
Warning,
|
||||
Error
|
||||
Normal = 1,
|
||||
Warning = 2,
|
||||
Error = 3
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user