We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e02cbe8 commit d670a3cCopy full SHA for d670a3c
models/issue_reaction.go
@@ -69,7 +69,7 @@ func findReactions(e Engine, opts FindReactionsOptions) ([]*Reaction, error) {
69
reactions := make([]*Reaction, 0, 10)
70
sess := e.Where(opts.toConds())
71
return reactions, sess.
72
- In("reaction.type", setting.UI.Reactions).
+ In("reaction.`type`", setting.UI.Reactions).
73
Asc("reaction.issue_id", "reaction.comment_id", "reaction.created_unix", "reaction.id").
74
Find(&reactions)
75
}
0 commit comments