3.0.5233.40306

This commit is contained in:
Luke Pulverenti
2014-04-30 23:24:55 -04:00
parent 98c0b28d14
commit c741082dfd
42 changed files with 238 additions and 166 deletions

View File

@@ -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;
}
}
}