commit
89d678384f
|
@ -1032,7 +1032,7 @@ namespace Emby.Server.Implementations
|
|||
((UserManager)UserManager).Initialize();
|
||||
}
|
||||
|
||||
protected virtual string PackageRuntime
|
||||
public virtual string PackageRuntime
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
|
@ -84,8 +84,8 @@ namespace Emby.Server.Implementations.HttpServer.SocketSharp
|
|||
|
||||
private void ProcessContext(HttpListenerContext context)
|
||||
{
|
||||
InitTask(context, _disposeCancellationToken);
|
||||
//Task.Run(() => InitTask(context, _disposeCancellationToken));
|
||||
//InitTask(context, _disposeCancellationToken);
|
||||
Task.Run(() => InitTask(context, _disposeCancellationToken));
|
||||
}
|
||||
|
||||
private Task InitTask(HttpListenerContext context, CancellationToken cancellationToken)
|
||||
|
|
|
@ -666,8 +666,7 @@ namespace Emby.Server.Implementations.Library
|
|||
|
||||
DeleteUserPolicy(user);
|
||||
|
||||
// Force this to be lazy loaded again
|
||||
Users = LoadUsers();
|
||||
Users = allUsers.Where(i => i.Id != user.Id).ToList();
|
||||
|
||||
OnUserDeleted(user);
|
||||
}
|
||||
|
|
|
@ -84,5 +84,7 @@ namespace MediaBrowser.Controller
|
|||
void LaunchUrl(string url);
|
||||
|
||||
void EnableLoopback(string appName);
|
||||
|
||||
string PackageRuntime { get; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.2.30.17")]
|
||||
[assembly: AssemblyVersion("3.2.30.18")]
|
||||
|
|
Loading…
Reference in New Issue
Block a user