diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-03-19 16:34:36 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-03-19 16:34:36 -0400 |
| commit | 3838471ae553578449c1d4677f63d381fe4ed2af (patch) | |
| tree | cba1da27bfd768dd4ca2435611df07bd7d245282 | |
| parent | 3ab212d070384c0a0000e255307aa58d15cbd0ae (diff) | |
| parent | 036be902783ef8b94d504dee6fcc33f380f6c223 (diff) | |
Merge pull request #1564 from MediaBrowser/dev
fix indicators
| -rw-r--r-- | MediaBrowser.Controller/Entities/SourceType.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Entities/SourceType.cs b/MediaBrowser.Controller/Entities/SourceType.cs index 92976344c5..9c307b4e6e 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 } } |
