diff options
Diffstat (limited to 'routers/repo/pull.go')
-rw-r--r-- | routers/repo/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/pull.go b/routers/repo/pull.go index f543fc31c6..ee018ebda7 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -54,7 +54,7 @@ func getForkRepository(ctx *middleware.Context) *models.Repository { } ctx.Data["ForkFrom"] = forkRepo.Owner.Name + "/" + forkRepo.Name - if err := ctx.User.GetOrganizations(); err != nil { + if err := ctx.User.GetOrganizations(true); err != nil { ctx.Handle(500, "GetOrganizations", err) return nil } |