bug fixed for 500 caused by get org users (#149)

This commit is contained in:
Lunny Xiao 2016-11-12 00:55:06 +08:00 committed by GitHub
parent a8c6698de8
commit 9bf28a2799
1 changed files with 2 additions and 2 deletions

View File

@ -323,8 +323,8 @@ func GetOwnedOrgsByUserIDDesc(userID int64, desc string) ([]*User, error) {
func GetOrgUsersByUserID(uid int64, all bool) ([]*OrgUser, error) {
ous := make([]*OrgUser, 0, 10)
sess := x.
Join("LEFT", "user", `"org_user".org_id="user".id`).
Where(`"org_user".uid=?`, uid)
Join("LEFT", "user", "`org_user`.org_id=`user`.id").
Where("`org_user`.uid=?", uid)
if !all {
// Only show public organizations
sess.And("is_public=?", true)