Merge pull request #1564 from MediaBrowser/dev

fix indicators
This commit is contained in:
Luke
2016-03-19 16:34:36 -04:00

View File

@@ -3,8 +3,8 @@ namespace MediaBrowser.Controller.Entities
{
public enum SourceType
{
Library = 1,
Channel = 2,
LiveTV = 3
Library = 0,
Channel = 1,
LiveTV = 2
}
}