mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix(Salesforce Node): Fix Account update owner operation (#6958)
Github issue / Community forum post (link here to close automatically): https://community.n8n.io/t/cannot-update-salesforce-account-owner/27514
This commit is contained in:
@@ -2213,8 +2213,8 @@ export class Salesforce implements INodeType {
|
||||
if (updateFields.phone !== undefined) {
|
||||
body.Phone = updateFields.phone as string;
|
||||
}
|
||||
if (updateFields.owner !== undefined) {
|
||||
body.OwnerId = updateFields.owner as string;
|
||||
if (updateFields.ownerId !== undefined) {
|
||||
body.OwnerId = updateFields.ownerId as string;
|
||||
}
|
||||
if (updateFields.sicDesc !== undefined) {
|
||||
body.SicDesc = updateFields.sicDesc as string;
|
||||
|
||||
Reference in New Issue
Block a user