aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-05-31 14:47:53 -0400
committerLuke <luke.pulverenti@gmail.com>2016-05-31 14:47:53 -0400
commit322ecae53e4cf6990124d895da50146ba1fc1945 (patch)
tree2cdbd2c8e7b34d74d74208d8cdb6d12f07786719 /MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
parent002f4824ef197ee50fb2c200dee69c22f3cabee2 (diff)
parentec23e084d04bcb3361fcc0799e65943ae9ea95b5 (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.cs8
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()