diff options
| author | Bond_009 <Bond.009@outlook.com> | 2019-06-09 22:08:01 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-08-16 21:06:11 +0200 |
| commit | 8d3b5c851ded74b9f34eb2cd963187761a3f6f61 (patch) | |
| tree | 335cadb62ae190f68b0c81801354096b4ab7e856 /Emby.Notifications | |
| parent | 7a27dd8a1b7578a1dcef27f6852de1ae805a7d67 (diff) | |
Improvements to UserManager
Diffstat (limited to 'Emby.Notifications')
| -rw-r--r-- | Emby.Notifications/NotificationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Notifications/NotificationManager.cs b/Emby.Notifications/NotificationManager.cs index a767e541e..eecbbea07 100644 --- a/Emby.Notifications/NotificationManager.cs +++ b/Emby.Notifications/NotificationManager.cs @@ -89,7 +89,7 @@ namespace Emby.Notifications return _userManager.Users.Where(i => i.Policy.IsAdministrator) .Select(i => i.Id); case SendToUserType.All: - return _userManager.Users.Select(i => i.Id); + return _userManager.UsersIds; case SendToUserType.Custom: return request.UserIds; default: |
