From 13cca8a66abaeb6ff93dc4926b2517cf49b44bfa Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 27 Jun 2017 20:39:59 -0400 Subject: [PATCH] models/comment: remove unused SQL parameter (#4586) --- models/comment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/comment.go b/models/comment.go index b31b4a84c..1be559b0f 100644 --- a/models/comment.go +++ b/models/comment.go @@ -437,7 +437,7 @@ func getCommentsByIssueIDSince(e Engine, issueID, since int64) ([]*Comment, erro func getCommentsByRepoIDSince(e Engine, repoID, since int64) ([]*Comment, error) { comments := make([]*Comment, 0, 10) - sess := e.Where("issue.repo_id = ?", repoID).Join("INNER", "issue", "issue.id = comment.issue_id", repoID).Asc("comment.created_unix") + sess := e.Where("issue.repo_id = ?", repoID).Join("INNER", "issue", "issue.id = comment.issue_id").Asc("comment.created_unix") if since > 0 { sess.And("comment.updated_unix >= ?", since) }