mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix(Mautic Node): Fix issue with owner not being set correctly (#6991)
This commit is contained in:
@@ -623,7 +623,7 @@ export class Mautic implements INodeType {
|
||||
body.lastActive = additionalFields.lastActive as string;
|
||||
}
|
||||
if (additionalFields.ownerId) {
|
||||
body.ownerId = additionalFields.ownerId as string;
|
||||
body.owner = additionalFields.ownerId as string;
|
||||
}
|
||||
if (additionalFields.addressUi) {
|
||||
const addressValues = (additionalFields.addressUi as IDataObject)
|
||||
@@ -738,7 +738,7 @@ export class Mautic implements INodeType {
|
||||
body.lastActive = updateFields.lastActive as string;
|
||||
}
|
||||
if (updateFields.ownerId) {
|
||||
body.ownerId = updateFields.ownerId as string;
|
||||
body.owner = updateFields.ownerId as string;
|
||||
}
|
||||
if (updateFields.addressUi) {
|
||||
const addressValues = (updateFields.addressUi as IDataObject)
|
||||
|
||||
Reference in New Issue
Block a user