diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-02-16 10:38:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-16 10:38:10 +0100 |
| commit | 25c2267a89af5c2e82774c638cdad0defcc894b5 (patch) | |
| tree | 02c5dd1e0e2d7550f039d5e90c775239a4d1a51f /Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs | |
| parent | b7ae044e653859b9190783e38e720d5c13a13098 (diff) | |
| parent | 21f0a7e020dab7b667559b8adc51a35147941d41 (diff) | |
Merge pull request #907 from cvium/fix_assembly_visibility
Fix assembly visibility
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs')
| -rw-r--r-- | Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs b/Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs index 774ed09da..a5badacee 100644 --- a/Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs +++ b/Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs @@ -14,7 +14,7 @@ using Microsoft.Extensions.Logging; namespace Emby.Server.Implementations.EntryPoints { - class UserDataChangeNotifier : IServerEntryPoint + public class UserDataChangeNotifier : IServerEntryPoint { private readonly ISessionManager _sessionManager; private readonly ILogger _logger; |
