summaryrefslogtreecommitdiffstats
path: root/models/issue_watch.go
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2018-07-20 05:10:17 +0300
committerLunny Xiao <xiaolunwen@gmail.com>2018-07-20 10:10:17 +0800
commit0c59edaafa94738b8eaec1620f20887cc35d90e2 (patch)
tree344496bf031508008428db4b9537a68953a44320 /models/issue_watch.go
parent1e2da5d396141c9c240151d8736862f7d04aa46f (diff)
downloadgitea-0c59edaafa94738b8eaec1620f20887cc35d90e2.tar.gz
gitea-0c59edaafa94738b8eaec1620f20887cc35d90e2.zip
Update xorm to latest version and fix correct `user` table referencing in sql (#4473)
Diffstat (limited to 'models/issue_watch.go')
-rw-r--r--models/issue_watch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue_watch.go b/models/issue_watch.go
index 3e7d24821b..579c915476 100644
--- a/models/issue_watch.go
+++ b/models/issue_watch.go
@@ -67,7 +67,7 @@ func getIssueWatchers(e Engine, issueID int64) (watches []*IssueWatch, err error
Where("`issue_watch`.issue_id = ?", issueID).
And("`user`.is_active = ?", true).
And("`user`.prohibit_login = ?", false).
- Join("INNER", "user", "`user`.id = `issue_watch`.user_id").
+ Join("INNER", "`user`", "`user`.id = `issue_watch`.user_id").
Find(&watches)
return
}