aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/NotificationsService.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-08-19 18:42:31 -0400
committerGitHub <noreply@github.com>2017-08-19 18:42:31 -0400
commit1c494519c10f7aad08783c28348f6872023126d5 (patch)
tree5aef83c994b7074b6889f601c4af46f3a686502d /MediaBrowser.Api/NotificationsService.cs
parentc58db90c950c766321615eca236557d87b8d1b74 (diff)
parenta02968c568c97da544b239014506a03ecca35c09 (diff)
Merge pull request #2833 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Api/NotificationsService.cs')
-rw-r--r--MediaBrowser.Api/NotificationsService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/NotificationsService.cs b/MediaBrowser.Api/NotificationsService.cs
index 58e413cef..4876351fc 100644
--- a/MediaBrowser.Api/NotificationsService.cs
+++ b/MediaBrowser.Api/NotificationsService.cs
@@ -99,7 +99,7 @@ namespace MediaBrowser.Api
public object Get(GetNotificationTypes request)
{
- var result = _notificationManager.GetNotificationTypes().ToList();
+ var result = _notificationManager.GetNotificationTypes();
return ToOptimizedResult(result);
}