mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix Spotify pagination bug (#2061)
* Fixed missing value Fixed infinite amount of interval triggered nodes executions * Fixed inifite loop on Spotify Node * Hide Limit parameter * Logic operator fix * Spotify getFollowingArtists returnAll fix * ⚡ Small improvements to #2054 * 👕 Fix lint issue Co-authored-by: Лебедев Иван <11215636+X-pech@users.noreply.github.com> Co-authored-by: X-pech <lisgml@gmail.com>
This commit is contained in:
@@ -71,7 +71,7 @@ export async function spotifyApiRequestAllItems(this: IHookFunctions | IExecuteF
|
||||
}
|
||||
} while (
|
||||
(responseData['next'] !== null && responseData['next'] !== undefined) ||
|
||||
responseData[propertyName.split('.')[0]].next !== null
|
||||
(responseData[propertyName.split('.')[0]].next !== null && responseData[propertyName.split('.')[0]].next !== undefined)
|
||||
);
|
||||
|
||||
return returnData;
|
||||
|
||||
Reference in New Issue
Block a user