Skip to content

Commit

Permalink
fix: "Mailbox Create" operation used incorrect input parameters resul…
Browse files Browse the repository at this point in the history
…ting in failure to create mailbox
  • Loading branch information
umanamente committed Oct 31, 2024
1 parent 7bc976e commit d38d029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodes/Imap/operations/mailbox/functions/MailboxCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const createMailboxOperation: IResourceOperationDef = {
}
context.logger?.info(`Creating mailbox "${resultPath}"`);

const mailboxCreateResp : MailboxCreateResponse = await client.mailboxCreate(mailboxPath);
const mailboxCreateResp : MailboxCreateResponse = await client.mailboxCreate(resultPath);
var item_json = JSON.parse(JSON.stringify(mailboxCreateResp));
returnData.push({
json: item_json,
Expand Down

0 comments on commit d38d029

Please sign in to comment.