You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function getSignatureBody(req: Request): string {
const stringifiedBody = JSON.stringify(req.body);
// HACK: This is necessary since express.json() converts the empty request body to {}
return stringifiedBody === '{}' ? '' : stringifiedBody;
}
User with special character in their name couldn't use "Create Issue" integration (401)
Environment
Node.js 18
Steps to Reproduce
Expected Result
Signature match.
Actual Result
Signature did not match.
Analysis
Calling
JSON.stringify
replaces\u00e9
withé
.The text was updated successfully, but these errors were encountered: