Skip to content

Commit 72d0232

Browse files
author
Felix Kleinekathöfer
authored
Fixed limit for progress api call
1 parent 1df6462 commit 72d0232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/theme/scripts/list-translations

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ for language in r.json()['data']:
3030
if not branchId:
3131
sys.exit(f"Could not find specified branch: ${branchId}!")
3232

33-
r = requests.get('https://api.crowdin.com/api/v2/projects/%s/branches/%s/languages/progress' %
33+
r = requests.get('https://api.crowdin.com/api/v2/projects/%s/branches/%s/languages/progress?limit=500' %
3434
(CROWDIN_PROJECT_ID, branchId), headers=headers)
3535
r.raise_for_status()
3636

0 commit comments

Comments
 (0)