mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix small bug in HumanticAI-Node
This commit is contained in:
@@ -109,10 +109,14 @@ export class HumanticAi implements INodeType {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
responseData = responseData.data;
|
|
||||||
} else {
|
} else {
|
||||||
responseData = await humanticAiApiRequest.call(this, 'GET', `/user-profile/create`, {}, qs);
|
responseData = await humanticAiApiRequest.call(this, 'GET', `/user-profile/create`, {}, qs);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (responseData.data !== undefined) {
|
||||||
responseData = responseData.data;
|
responseData = responseData.data;
|
||||||
|
} else {
|
||||||
|
delete responseData.usage_stats;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (operation === 'get') {
|
if (operation === 'get') {
|
||||||
|
|||||||
Reference in New Issue
Block a user