Closed brohitbrose closed 1 year ago
The root cause is here:
https://github.com/swimos/swim/blob/f0eabb587f4f73bce50f51fb293c460e86e84e35/swim-java/swim-runtime/swim-core/swim.http/src/main/java/swim/http/HttpMessage.java#L216
documentParser() does not handle top-level arrays.
documentParser()
Replacing this call with valueParser() may solve this.
valueParser()
The root cause is here:
https://github.com/swimos/swim/blob/f0eabb587f4f73bce50f51fb293c460e86e84e35/swim-java/swim-runtime/swim-core/swim.http/src/main/java/swim/http/HttpMessage.java#L216
documentParser()
does not handle top-level arrays.Replacing this call with
valueParser()
may solve this.