From 2d125c9017b549417decada0e91f37a085ce5b76 Mon Sep 17 00:00:00 2001 From: ShiKhu Date: Tue, 11 May 2021 18:51:10 +0200 Subject: [PATCH] fix (backend-integrations): sentry tag name --- backend/services/integrations/integration/sentry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/integrations/integration/sentry.go b/backend/services/integrations/integration/sentry.go index 2ac095a63..39443f51a 100644 --- a/backend/services/integrations/integration/sentry.go +++ b/backend/services/integrations/integration/sentry.go @@ -98,7 +98,7 @@ PageLoop: var sessionID uint64 var token string for _, tag := range e.Tags { - if tag.Key == "OpenreplaySession" { + if tag.Key == "openReplaySessionToken" { token = tag.Value break }