This commit is contained in:
Adam Majer 2024-08-16 14:27:57 +02:00
parent 79975b6dfe
commit 6d8419c7db

View File

@ -132,8 +132,8 @@ func processBuildStatus(h *common.RequestHandler, project, refProject *common.Bu
slices.SortFunc(refProject.Result, BuildResultSorter)
j := 0
for i := 0; i < len(project.Result); i++ {
j := 0
for ; j < len(refProject.Result); j++ {
if project.Result[i].Repository != refProject.Result[j].Repository ||
project.Result[i].Arch != refProject.Result[j].Arch {