Skip to content

Commit

Permalink
Fix wrong error description
Browse files Browse the repository at this point in the history
  • Loading branch information
lunny committed Jun 14, 2021
1 parent 1f0b695 commit 4885e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers/web/user/home.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func getDashboardContextUser(ctx *context.Context) *models.User {

orgs, err := models.GetUserOrgsList(ctx.User.ID)
if err != nil {
ctx.ServerError("GetOrganizations", err)
ctx.ServerError("GetUserOrgsList", err)
return nil
}
ctx.Data["Orgs"] = orgs
Expand Down

0 comments on commit 4885e37

Please sign in to comment.