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
(lldb) po dictionary["errors"] as? NSArray
nil
(lldb) po dictionary["errors"] as? NSMutableArray
nil
(lldb) po type(of: dictionary["errors"])
Swift.Optional<Any>
(lldb) po dictionary["errors"]
▿ Optional<Any>
▿ some : 1 element
▿ 0 : 2 elements
- key : detail
▿ value : 1 element
▿ 0 : 2 elements
- key : auth
▿ value : 1 element
- 0 : invalid email or password
The text was updated successfully, but these errors were encountered:
My response payload contains the following error:
However Vox will always respond with
JSONAPIError.serialization
due to not casting the error array correctly:https://github.com/aronbalog/Vox/blob/master/Vox/Core/Class/Context.swift#L42
The text was updated successfully, but these errors were encountered: