We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682232c commit adba2baCopy full SHA for adba2ba
javascript/mixpanel-network.js
@@ -26,7 +26,7 @@ export const MixpanelNetwork = (() => {
26
headers: {
27
"Content-Type": "application/x-www-form-urlencoded",
28
},
29
- body: `data=${JSON.stringify(data)}`,
+ body: `data=${encodeURIComponent(JSON.stringify(data))}`,
30
});
31
32
const responseBody = await response.json();
0 commit comments