🐛 Fix slack as_user (#708)

* Ignore as_user only when it is false

* Update as_user description
This commit is contained in:
Innokenty Lebedev
2020-07-05 12:19:13 +03:00
committed by GitHub
parent 5d6c7657cb
commit fe56c8778d
2 changed files with 22 additions and 5 deletions

View File

@@ -452,12 +452,9 @@ export class Slack implements INodeType {
}
if (body.as_user === false) {
body.username = this.getNodeParameter('username', i) as string;
delete body.as_user;
}
// ignore body.as_user as it's deprecated
delete body.as_user;
if (!jsonParameters) {
const attachments = this.getNodeParameter('attachments', i, []) as unknown as Attachment[];
const blocksUi = (this.getNodeParameter('blocksUi', i, []) as IDataObject).blocksValues as IDataObject[];