mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
⚡ Do not error even if no contacts found
This commit is contained in:
@@ -317,7 +317,8 @@ export class GoogleContacts implements INodeType {
|
|||||||
{},
|
{},
|
||||||
qs,
|
qs,
|
||||||
);
|
);
|
||||||
responseData = responseData.connections || responseData.results.map((result: IDataObject) => result.person);
|
|
||||||
|
responseData = responseData.connections || responseData.results?.map((result: IDataObject) => result.person) || [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!rawData) {
|
if (!rawData) {
|
||||||
|
|||||||
Reference in New Issue
Block a user