aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/EntryPoints/Notifications
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-27 15:30:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-27 15:30:12 -0400
commit3db92516bea0f473022f257dd61dfeafa6998c75 (patch)
treea7a03317f913d85c2e634770ec1963c2a38cad78 /MediaBrowser.Server.Implementations/EntryPoints/Notifications
parentf476944d9168c7c8a8a87e7e439f57ef8aceb4be (diff)
updated nuget
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints/Notifications')
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifier.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifier.cs b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifier.cs
index 06dcf92ff..217b068bf 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifier.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/Notifier.cs
@@ -149,7 +149,9 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var notification = new NotificationRequest
{
- NotificationType = GetPlaybackNotificationType(item.MediaType)
+ NotificationType = GetPlaybackNotificationType(item.MediaType),
+
+ ExcludeUserIds = e.Users.Select(i => i.Id.ToString("N")).ToList()
};
notification.Variables["ItemName"] = item.Name;