Skip to content

Commit

Permalink
fix: multivaluedQueryParam(String, "#{el}") crashes, close #4555
Browse files Browse the repository at this point in the history
  • Loading branch information
slandelle committed Apr 25, 2024
1 parent f6101ab commit cea87d8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -95,7 +95,7 @@ object Expressions {
Pauses.durationExpression(s, Some(TimeUnit.SECONDS))

def toSeqExpression[T](s: String): Expression[Seq[T]] =
s.el[Seq[T]]
s.el[Seq[Any]].asInstanceOf[Expression[Seq[T]]]

def toMapExpression(s: String): Expression[Map[String, Any]] =
s.el[Map[String, Any]]
Expand Down

0 comments on commit cea87d8

Please sign in to comment.