0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-21 21:50:26 +02:00

Fix stats bug when syncing release (#36285)

This commit is contained in:
Lunny Xiao 2026-01-03 10:55:37 -08:00 committed by GitHub
parent b79dbfa990
commit af95cbc0de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -233,7 +233,7 @@ func SyncReleasesWithTags(ctx context.Context, repo *repo_model.Repository, gitR
return fmt.Errorf("unable to update tag %s for pull-mirror Repo[%d:%s/%s]: %w", tag.Name, repo.ID, repo.OwnerName, repo.Name, err)
}
}
added, deleted, updated = len(deletes), len(updates), len(inserts)
added, deleted, updated = len(inserts), len(deletes), len(updates)
return nil
})
if err != nil {