aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-02-16 10:38:10 +0100
committerGitHub <noreply@github.com>2019-02-16 10:38:10 +0100
commit25c2267a89af5c2e82774c638cdad0defcc894b5 (patch)
tree02c5dd1e0e2d7550f039d5e90c775239a4d1a51f /Emby.Server.Implementations/EntryPoints/UserDataChangeNotifier.cs
parentb7ae044e653859b9190783e38e720d5c13a13098 (diff)
parent21f0a7e020dab7b667559b8adc51a35147941d41 (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.cs2
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;