mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(core): Revert rule @typescript-eslint/prefer-nullish-coalescing
This commit is contained in:
@@ -104,7 +104,7 @@ export async function salesforceApiRequest(
|
||||
const options = getOptions.call(
|
||||
this,
|
||||
method,
|
||||
uri ?? endpoint,
|
||||
uri || endpoint,
|
||||
body,
|
||||
qs,
|
||||
instance_url as string,
|
||||
@@ -125,7 +125,7 @@ export async function salesforceApiRequest(
|
||||
const options = getOptions.call(
|
||||
this,
|
||||
method,
|
||||
uri ?? endpoint,
|
||||
uri || endpoint,
|
||||
body,
|
||||
qs,
|
||||
credentials.oauthTokenData.instance_url,
|
||||
|
||||
@@ -1854,7 +1854,7 @@ export class Salesforce implements INodeType {
|
||||
const dataBuffer = await this.helpers.getBinaryDataBuffer(i, binaryPropertyName);
|
||||
|
||||
body.entity_content.PathOnClient = `${title}.${
|
||||
additionalFields.fileExtension ?? binaryData.fileExtension
|
||||
additionalFields.fileExtension || binaryData.fileExtension
|
||||
}`;
|
||||
data = {
|
||||
entity_content: {
|
||||
|
||||
Reference in New Issue
Block a user