From d563081eb00f8a81e6eb2a4109d432384473f49f Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Thu, 25 Jul 2024 11:27:39 +0100 Subject: [PATCH] attemp to fixe chat typing --- src/app/module/chat/infra/socket/signalR.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/module/chat/infra/socket/signalR.ts b/src/app/module/chat/infra/socket/signalR.ts index 3fab3a0ce..14d14ccbf 100644 --- a/src/app/module/chat/infra/socket/signalR.ts +++ b/src/app/module/chat/infra/socket/signalR.ts @@ -180,7 +180,7 @@ export class SignalRConnection { this.messageSubject.next(message); }); - this.hubConnection.on('Typing', (_typing: UserTypingDTO) => { + this.hubConnection.on('TypingMessage', (_typing: UserTypingDTO) => { console.log('Typing', _typing) this.typingSubject.next(_typing); });