GitHub & Codeberg - get first 100 releases (not 30)

This commit is contained in:
Imran Remtulla
2023-01-28 00:08:17 -05:00
parent fa2a80e34c
commit 05f712603c
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ class Codeberg extends AppSource {
? additionalSettings['filterReleaseTitlesByRegEx']
: null;
Response res = await get(Uri.parse(
'https://$host/api/v1/repos${standardUrl.substring('https://$host'.length)}/releases'));
'https://$host/api/v1/repos${standardUrl.substring('https://$host'.length)}/releases?per_page=100'));
if (res.statusCode == 200) {
var releases = jsonDecode(res.body) as List<dynamic>;