Commit 6ac18d62 by Lee Munkyeong

Merge branch 'features/#470_ルーム検索条件で参加ユーザが含んでいる。' into 'features/abcomm_sp6'

コードミス修正。

See merge request !101
parents 8a0562fb 06318d4e
......@@ -130,7 +130,7 @@ public class ChatRoomDao extends AbstractDao {
sql.append(" WHERE ");
List<String> whereSqlList = new ArrayList<String>();
for (String keyword : keywords) {
String whereSql = "( cr.chat_room_name LIKE '%" + keyword + "%'" + "OR cr.chat_room_name LIKE '%" + keyword + "%' )";
String whereSql = "( cr.chat_room_name LIKE '%" + keyword + "%' )";
whereSqlList.add(whereSql);
}
String whereSql = StringUtil.join(" AND ", whereSqlList);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment