We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5f196 commit 0c820aaCopy full SHA for 0c820aa
src/Plugins/BotSharp.Plugin.ChatHub/SignalRHub.cs
@@ -28,7 +28,7 @@ public override async Task OnConnectedAsync()
28
_logger.LogInformation($"SignalR Hub: {_user.FirstName} {_user.LastName} ({Context.User.Identity.Name}) connected in {Context.ConnectionId}");
29
30
var convService = _services.GetRequiredService<IConversationService>();
31
- _context.HttpContext.Request.Query.TryGetValue("conversationId", out var conversationId);
+ _context.HttpContext.Request.Query.TryGetValue("conversation-id", out var conversationId);
32
33
if (!string.IsNullOrEmpty(conversationId))
34
{
0 commit comments