Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decoding JSON array #245

Closed
florianreinhart opened this issue Dec 5, 2019 · 0 comments · Fixed by #246
Closed

Decoding JSON array #245

florianreinhart opened this issue Dec 5, 2019 · 0 comments · Fixed by #246
Labels
bug Something isn't working

Comments

@florianreinhart
Copy link
Contributor

It's currently not possible to decode a JSON array using MySQLDataDecoder.

Changing MySQLDataDecoder.swift from

private final class _Decoder: Decoder {
    func unkeyedContainer() throws -> UnkeyedDecodingContainer {
        fatalError()
    }
}

to

private final class _Decoder: Decoder {
    func unkeyedContainer() throws -> UnkeyedDecodingContainer {
        throw DoJSON()
    }
}

fixes this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants