You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 21, 2018. It is now read-only.
case class Foo(name: String, abc: List[String])
val user = Foo("Joe", List("abc", "1,2,3"))
val userXML = Xml(user) //userXML: rapture.xml.Xml = xml"""<name>Joe</name><abc>abc1,2,3</abc>"""
userXML.abc.as[List[String]]
result is xml"""<name>Joe</name><abc>abc1,2,3</abc>""" List(abc1,2,3)
Issue:
Wrong List serialization to XML
Example:
result is
xml"""<name>Joe</name><abc>abc1,2,3</abc>"""
List(abc1,2,3)
Expected:
The text was updated successfully, but these errors were encountered: