From b81186d1d4571547d2ed5fe10a9f4fc9beee9653 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 12 Mar 2025 21:26:55 +0530 Subject: [PATCH] feat: include conversation meta in logs --- app/javascript/dashboard/store/modules/conversations/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/javascript/dashboard/store/modules/conversations/index.js b/app/javascript/dashboard/store/modules/conversations/index.js index 8a900c9fa..8715d24ec 100644 --- a/app/javascript/dashboard/store/modules/conversations/index.js +++ b/app/javascript/dashboard/store/modules/conversations/index.js @@ -220,6 +220,8 @@ export const mutations = { Sentry.withScope(scope => { scope.setContext('incoming', conversation); scope.setContext('stored', selectedConversation); + scope.setContext('incoming_meta', conversation.meta); + scope.setContext('stored_meta', selectedConversation.meta); Sentry.captureMessage('Conversation update mismatch'); });