mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-23 11:44:06 -08: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:
parent
8f8a1de3dd
commit
9b27878d8f
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue