From 870eb0c067e5a38a2b0427c91da6971e3d4ff06c Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Thu, 19 Mar 2026 16:22:41 +0530 Subject: [PATCH] fix: Rename conversation URL parameter from `conversation` to `conversationId`. --- src/notifications/notifications.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notifications/notifications.service.ts b/src/notifications/notifications.service.ts index cda52e5..1e1b3e6 100644 --- a/src/notifications/notifications.service.ts +++ b/src/notifications/notifications.service.ts @@ -348,7 +348,7 @@ export class NotificationsService implements OnModuleInit { conversationId: string; }) { const prefix = await this.getRoutePrefix(event.recipientUserId); - const actionUrl = `${prefix}/message?conversation=${event.conversationId}`; + const actionUrl = `${prefix}/message?conversationId=${event.conversationId}`; await this.createAndSendNotification( event.recipientUserId,