fix gitlab auto updater failing for MC 26

This commit is contained in:
James Seibel
2026-04-11 16:58:23 -05:00
parent 89804f1ba1
commit b4e0687e2a
@@ -94,7 +94,10 @@ public class GitlabGetter
{
try
{
pipelineInfo.put(pipeline, WebDownloader.parseWebJsonList(this.GitProjID + "pipelines/" + pipeline + "/jobs"));
pipelineInfo.put(pipeline, WebDownloader.parseWebJsonList(this.GitProjID + "pipelines/" + pipeline + "/jobs?per_page=100"));
// max page size is 100,
// if we ever support more than 100 MC versions this logic will need to handle pagination
// https://docs.gitlab.com/api/rest/#pagination
}
catch (Exception e)
{