diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-05-31 14:47:53 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-05-31 14:47:53 -0400 |
| commit | 322ecae53e4cf6990124d895da50146ba1fc1945 (patch) | |
| tree | 2cdbd2c8e7b34d74d74208d8cdb6d12f07786719 /MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs | |
| parent | 002f4824ef197ee50fb2c200dee69c22f3cabee2 (diff) | |
| parent | ec23e084d04bcb3361fcc0799e65943ae9ea95b5 (diff) | |
Merge pull request #1797 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs b/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs index 49012c65a..df128a90b 100644 --- a/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs +++ b/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs @@ -433,13 +433,7 @@ namespace MediaBrowser.Server.Implementations.Intros private static IEnumerable<string> GetKeywords(BaseItem item) { - var hasTags = item as IHasKeywords; - if (hasTags != null) - { - return hasTags.Keywords; - } - - return new List<string>(); + return item.Keywords; } public IEnumerable<string> GetAllIntroFiles() |
