Skip to content

Commit 4885e37

Browse files
committed
Fix wrong error description
1 parent 1f0b695 commit 4885e37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routers/web/user/home.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func getDashboardContextUser(ctx *context.Context) *models.User {
5151

5252
orgs, err := models.GetUserOrgsList(ctx.User.ID)
5353
if err != nil {
54-
ctx.ServerError("GetOrganizations", err)
54+
ctx.ServerError("GetUserOrgsList", err)
5555
return nil
5656
}
5757
ctx.Data["Orgs"] = orgs

0 commit comments

Comments
 (0)