Skip to content

Commit

Permalink
fixed bug when listing tagged questions in a space, closes Erudika/sc…
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Oct 2, 2019
1 parent 0800312 commit d1cecbc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,7 @@ public String getTagged(@PathVariable String tag, HttpServletRequest req, Model
if (qf.equals("*")) {
questionslist = pc.findTagged(type, new String[]{tag}, itemcount);
} else {
questionslist = pc.findQuery(type, qf + " AND " + Config._TAGS + ":" + tag, itemcount);
questionslist = pc.findQuery(type, qf + " AND " + tag, itemcount);
}
}
utils.fetchProfiles(questionslist);
Expand Down

0 comments on commit d1cecbc

Please sign in to comment.