mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
👕 replace coma in semicolon when end of line (#802)
This commit is contained in:
committed by
GitHub
parent
c298fd325a
commit
e863254272
@@ -288,8 +288,8 @@ export class Slack implements INodeType {
|
||||
//https://api.slack.com/methods/conversations.info
|
||||
if (operation === 'get') {
|
||||
const channel = this.getNodeParameter('channelId', i) as string;
|
||||
qs.channel = channel,
|
||||
responseData = await slackApiRequest.call(this, 'POST', '/conversations.info', {}, qs);
|
||||
qs.channel = channel;
|
||||
responseData = await slackApiRequest.call(this, 'POST', '/conversations.info', {}, qs);
|
||||
responseData = responseData.channel;
|
||||
}
|
||||
//https://api.slack.com/methods/conversations.list
|
||||
|
||||
Reference in New Issue
Block a user