Skip to content

Commit

Permalink
поправил выборку неподтвержденных
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcom committed Aug 11, 2023
1 parent 07d9dbf commit 6a8f71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/ru/org/linux/topic/TopicListDao.scala
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class TopicListDao(ds: DataSource) extends StrictLogging {

query.append(" ORDER BY del_info.delDate DESC LIMIT 20")

jdbcTemplate.query(query.toString, (rs: ResultSet, _: Int) => DeletedTopic.apply(rs), queryParameters.toArray)
jdbcTemplate.query(query.toString, (rs: ResultSet, _: Int) => DeletedTopic.apply(rs), queryParameters.toSeq *)
}

def getDeletedUserTopics(user: User, topics: Int): java.util.List[DeletedTopic] = {
Expand Down

0 comments on commit 6a8f71f

Please sign in to comment.