diff options
| author | Cody Robibero <cody@robibe.ro> | 2023-12-08 15:45:36 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2023-12-08 15:45:36 -0700 |
| commit | 033cfa59c499e5adbb949b708f06e56bf8932401 (patch) | |
| tree | 81e33ebe860d5852bb48b1abb7436c9c4c30053e /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 0d5bbfda321f64ad78b5b74e7bdfbbbb8b64c7af (diff) | |
Convert CollectionType to use lowercase enum names
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 98485f9a8..7c04fcbfc 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -724,7 +724,7 @@ namespace MediaBrowser.Controller.Entities if (this is IHasCollectionType view) { - if (view.CollectionType == CollectionType.LiveTv) + if (view.CollectionType == CollectionType.livetv) { return true; } |
