Skip to content

Commit

Permalink
fix: PostHog frontend initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCizmar committed Jul 12, 2023
1 parent a29e99d commit 57a4d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/fixtures/utmCookie.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function getUtmParams() {
return {};
}
try {
return JSON.parse(atob(cookie));
return JSON.parse(atob(decodeURIComponent(cookie)));
} catch (e) {
Sentry.captureException(e);
}
Expand Down

0 comments on commit 57a4d77

Please sign in to comment.