diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-19 00:05:33 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-19 00:05:33 -0400 |
| commit | 9e495d38868cdcb127edc5002187f546044f7477 (patch) | |
| tree | f1594d605a188e9cf280d2ecacd337a042bb5963 /MediaBrowser.Server.Implementations/EntryPoints/Notifications | |
| parent | bd06308f2c8f33eb646ea07a38157c5a8239ee59 (diff) | |
remove IChannelItem interface
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints/Notifications')
| -rw-r--r-- | MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifications.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifications.cs b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifications.cs index a9e4aaa0b..da1d25f2c 100644 --- a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifications.cs +++ b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifications.cs @@ -346,7 +346,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications return false; } - return !(item is IChannelItem) && !(item is ILiveTvItem); + return item.SourceType == SourceType.Library; } private async void LibraryUpdateTimerCallback(object state) |
