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 was archived by the owner on Nov 16, 2020. It is now read-only.
[ ] Regression (a behavior that used to work and stopped working in a new release)
[x ] Bug report
[ ] Performance issue
[ ] Feature request
[ ] Documentation issue or request
Current behavior
Could not convert Decimal to form-urlencoded data. (Logger+LogError.swift:17)
Expected behavior
Decimal value from request
Minimal reproduction of the problem with instructions
struct ProductRequest: Content {
var prices: [Decimal]
}
_ = try req.content.decode(ProductRequest.self).map(to: Product.self) { postData in
}