2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 05:23:13 +00:00
This commit is contained in:
2022-09-19 00:00:32 +03:00
parent c1b9af9e9e
commit 8e17a5b677
5 changed files with 29 additions and 22 deletions

View File

@ -1013,7 +1013,7 @@ public partial class DistributedConnection : NetworkConnection, IStore
if (this.Instance == null)
{
Warehouse.Put(this.RemoteUsername, this, null, Server).Then(x =>
Warehouse.Put(this.RemoteUsername.Replace("/", "_"), this, null, Server).Then(x =>
{
ready = true;
Status = ConnectionStatus.Connected;
@ -1136,7 +1136,7 @@ public partial class DistributedConnection : NetworkConnection, IStore
if (this.Instance == null)
{
Warehouse.Put(this.LocalUsername, this, null, Server).Then(x =>
Warehouse.Put(this.LocalUsername.Replace("/", "_"), this, null, Server).Then(x =>
{
openReply?.Trigger(true);
OnReady?.Invoke(this);