chore: fix miss makezero bug (#7752)

pull/7755/head
alingse 2024-05-27 06:04:54 +08:00 committed by GitHub
parent c8cd3e7125
commit 87f47166ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ func RemoveOrgUser(orgID, userID int64) error {
}
// Delete all repository accesses and unwatch them.
repoIDs := make([]int64, len(repos))
repoIDs := make([]int64, 0, len(repos))
for i := range repos {
repoIDs = append(repoIDs, repos[i].ID)
if err = watchRepo(sess, user.ID, repos[i].ID, false); err != nil {