aboutsummaryrefslogtreecommitdiffstats
path: root/models/repo/collaboration.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/repo/collaboration.go')
-rw-r--r--models/repo/collaboration.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/repo/collaboration.go b/models/repo/collaboration.go
index 04d92c415f..bd49b9aec9 100644
--- a/models/repo/collaboration.go
+++ b/models/repo/collaboration.go
@@ -44,7 +44,7 @@ func GetCollaborators(ctx context.Context, repoID int64, listOptions db.ListOpti
collaborators := make([]*Collaborator, 0, len(collaborations))
for _, c := range collaborations {
- user, err := user_model.GetUserByIDCtx(ctx, c.UserID)
+ user, err := user_model.GetUserByID(ctx, c.UserID)
if err != nil {
if user_model.IsErrUserNotExist(err) {
log.Warn("Inconsistent DB: User: %d is listed as collaborator of %-v but does not exist", c.UserID, repoID)