Remote sketchbook is limited to 20 sketches #809
Labels
conclusion: resolved
Issue was resolved
criticality: high
Of high impact
phase: implementation
Work is in the implementation phase
topic: code
Related to content of the project itself
type: imperfection
Perceived defect in any part of project
Uh oh!
There was an error while loading. Please reload this page.
Arduino IDE2 has the capability to fetch the sketches from the arduino create API.
During the initialization phase the following function gets called:
const sketches = await this.createApi.sketches();
We noticed that create-api has a pagination implemented that limits result to 120 result per page, we need to enable fetching with pagination.
To do so, the
sketches()
method implementation need to handle the pagination and return the result once all the sketches are correctly fetched from the endpointThe text was updated successfully, but these errors were encountered: