From c741082dfd709e20e9b762028a684d39755ecd28 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 30 Apr 2014 23:24:55 -0400 Subject: 3.0.5233.40306 --- .../Notifications/NotificationManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs') diff --git a/MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs b/MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs index 0b3af0409..416b29e86 100644 --- a/MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs +++ b/MediaBrowser.Server.Implementations/Notifications/NotificationManager.cs @@ -46,7 +46,7 @@ namespace MediaBrowser.Server.Implementations.Notifications var description = GetDescription(request, options); var tasks = _services.Where(i => IsEnabled(i, notificationType)) - .Select(i => SendNotification(request, i, users, description, title, cancellationToken)); + .Select(i => SendNotification(request, i, users, title, description, cancellationToken)); return Task.WhenAll(tasks); } @@ -176,7 +176,7 @@ namespace MediaBrowser.Server.Implementations.Notifications { if (options != null) { - text = options.Title; + text = options.Description; } } } -- cgit v1.2.3