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
*The API change should be non-breaking. Although the current API assumes headers are unique, that is still what you will want in most cases. However, some utility function should be added to allow retrieval of header arrays. No special treatment should be granted to any particular header at least from the public API point of view. If a backend does change the return type for some specific header, this should be handled and not show on the public API (the node driver will need a lot of duct tape there).
As per the Node doc:
Yet
SimpleHttpResponse.headers
are anHeaderMap[String]
. But at runtime,headers.get("Set-Cookie")
returns ajs.Array[String]
instead of aString
.(Just discussed the issue today on the Scala.js Gitter.)
The text was updated successfully, but these errors were encountered: