aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/SourceType.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-19 16:30:43 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-19 16:30:43 -0400
commit036be902783ef8b94d504dee6fcc33f380f6c223 (patch)
treec422de9cbb1c2f55bfbbc9720464ea68459f5182 /MediaBrowser.Controller/Entities/SourceType.cs
parentdb1bf5b1b55c8012e9ca3393fd59b9469ee5aeaf (diff)
fix indicators
Diffstat (limited to 'MediaBrowser.Controller/Entities/SourceType.cs')
-rw-r--r--MediaBrowser.Controller/Entities/SourceType.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Entities/SourceType.cs b/MediaBrowser.Controller/Entities/SourceType.cs
index 92976344c..9c307b4e6 100644
--- a/MediaBrowser.Controller/Entities/SourceType.cs
+++ b/MediaBrowser.Controller/Entities/SourceType.cs
@@ -3,8 +3,8 @@ namespace MediaBrowser.Controller.Entities
{
public enum SourceType
{
- Library = 1,
- Channel = 2,
- LiveTV = 3
+ Library = 0,
+ Channel = 1,
+ LiveTV = 2
}
}