mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Fix hubspotApiRequestAllItems for some (#1781)
This commit is contained in:
parent
1888f5c4a5
commit
40510a7ab4
|
@ -76,9 +76,7 @@ export async function hubspotApiRequestAllItems(this: IHookFunctions | IExecuteF
|
|||
return returnData;
|
||||
}
|
||||
} while (
|
||||
responseData['has-more'] !== undefined &&
|
||||
responseData['has-more'] !== null &&
|
||||
responseData['has-more'] !== false
|
||||
responseData['hasMore'] || responseData['has-more']
|
||||
);
|
||||
return returnData;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue