mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(AWS SNS Node): Fix an issue with messages failing to send if they contain certain characters (#5807)
This commit is contained in:
parent
163446c674
commit
f0954b94e1
|
@ -302,8 +302,8 @@ export class AwsSns implements INodeType {
|
||||||
|
|
||||||
const params = [
|
const params = [
|
||||||
'TopicArn=' + topic,
|
'TopicArn=' + topic,
|
||||||
'Subject=' + (this.getNodeParameter('subject', i) as string),
|
'Subject=' + encodeURIComponent(this.getNodeParameter('subject', i) as string),
|
||||||
'Message=' + (this.getNodeParameter('message', i) as string),
|
'Message=' + encodeURIComponent(this.getNodeParameter('message', i) as string),
|
||||||
];
|
];
|
||||||
|
|
||||||
const responseData = await awsApiRequestSOAP.call(
|
const responseData = await awsApiRequestSOAP.call(
|
||||||
|
|
Loading…
Reference in a new issue