mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
ci: Fix linting issues (no-changelog) (#6788)
* ci: Fix linting (no-changelog) * lintfix for nodes-base as well
This commit is contained in:
committed by
GitHub
parent
4e491b754f
commit
6fb8a9ee39
@@ -185,7 +185,7 @@ export class BinaryDataManager {
|
||||
}
|
||||
|
||||
async duplicateBinaryData(
|
||||
inputData: Array<INodeExecutionData[] | null> | unknown,
|
||||
inputData: Array<INodeExecutionData[] | null>,
|
||||
executionId: string,
|
||||
): Promise<INodeExecutionData[][]> {
|
||||
if (inputData && this.managers[this.binaryDataMode]) {
|
||||
|
||||
@@ -77,7 +77,7 @@ export async function getEncryptionKey(): Promise<string> {
|
||||
|
||||
const userSettings = await getUserSettings();
|
||||
|
||||
if (userSettings === undefined || userSettings.encryptionKey === undefined) {
|
||||
if (userSettings?.encryptionKey === undefined) {
|
||||
throw new Error(RESPONSE_ERROR_MESSAGES.NO_ENCRYPTION_KEY);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user