fixed themoviedb search returning no results

This commit is contained in:
Luke Pulverenti
2014-02-17 16:35:08 -05:00
parent 4ebba2b2e8
commit 1a9e2dfd83
27 changed files with 696 additions and 594 deletions

View File

@@ -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
}
}

View File

@@ -3,8 +3,8 @@ namespace MediaBrowser.Model.Notifications
{
public enum NotificationLevel
{
Normal,
Warning,
Error
Normal = 1,
Warning = 2,
Error = 3
}
}