fix(AWS SNS Node): Fix an issue with messages failing to send if they contain certain characters (#5807)

This commit is contained in:
Jon
2023-04-03 11:30:22 +01:00
committed by कारतोफ्फेलस्क्रिप्ट™
parent 163446c674
commit f0954b94e1

View File

@@ -302,8 +302,8 @@ export class AwsSns implements INodeType {
const params = [
'TopicArn=' + topic,
'Subject=' + (this.getNodeParameter('subject', i) as string),
'Message=' + (this.getNodeParameter('message', i) as string),
'Subject=' + encodeURIComponent(this.getNodeParameter('subject', i) as string),
'Message=' + encodeURIComponent(this.getNodeParameter('message', i) as string),
];
const responseData = await awsApiRequestSOAP.call(