mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
🐛 Correct paging parameter on Strava Node (#1804)
This commit is contained in:
parent
481dbae16b
commit
7ccc0f40a2
|
@ -137,7 +137,7 @@ export class Strava implements INodeType {
|
||||||
|
|
||||||
responseData = await stravaApiRequestAllItems.call(this, 'GET', `/activities`, {}, qs);
|
responseData = await stravaApiRequestAllItems.call(this, 'GET', `/activities`, {}, qs);
|
||||||
} else {
|
} else {
|
||||||
qs.limit = this.getNodeParameter('limit', i) as number;
|
qs.per_page = this.getNodeParameter('limit', i) as number;
|
||||||
|
|
||||||
responseData = await stravaApiRequest.call(this, 'GET', `/activities`, {}, qs);
|
responseData = await stravaApiRequest.call(this, 'GET', `/activities`, {}, qs);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue