0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-07-19 06:20:48 +02:00
This commit is contained in:
Lunny Xiao 2025-07-01 11:19:52 -07:00
parent 475f40da1f
commit 2785ae5c25
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A

View File

@ -141,7 +141,7 @@ func updateOrgRepoForVisibilityChanged(ctx context.Context, repo *repo_model.Rep
}
for i := range forkRepos {
if err := updateOrgRepoForVisibilityChanged(ctx, forkRepos[i], makePrivate); err != nil {
return fmt.Errorf("updateRepoForVisibilityChanged[%d]: %w", forkRepos[i], err)
return fmt.Errorf("updateRepoForVisibilityChanged[%s]: %w", forkRepos[i].FullName(), err)
}
}
return nil