Skip to content

Commit

Permalink
Increase limit for fetching logos from Dropbox API
Browse files Browse the repository at this point in the history
  • Loading branch information
hiletmis committed Feb 26, 2025
1 parent dcd8c0a commit 5d4e55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fetch-missing.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async function searchLogos() {
async function fetchLogos() {
const dbx = await getDropbox();
try {
const response = await dbx.filesListFolder({ path: '', recursive: true });
const response = await dbx.filesListFolder({ path: '', recursive: true, limit: 1000 });
return response.result.entries;
} catch (error) {
console.error(error);
Expand Down

0 comments on commit 5d4e55a

Please sign in to comment.