Skip to content

Commit

Permalink
Fixes #1258 (#1282)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll authored Oct 25, 2019
1 parent bbd99c3 commit 68cc303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UniversalDashboard/Server/DashboardHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public async Task SetSessionId(string sessionId)
_connectionManager.AddConnection(new Connection { Id = Context.ConnectionId, SessionId = sessionId });
_dashboardService.EndpointService.SessionManager.StartSession(sessionId);

await Clients.All.SendAsync("setConnectionId", Context.ConnectionId);
await Clients.Client(Context.ConnectionId).SendAsync("setConnectionId", Context.ConnectionId);
}

public Task Reload()
Expand Down

0 comments on commit 68cc303

Please sign in to comment.