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

Fix: Handle unset union map type #650

Merged
merged 1 commit into from Jul 25, 2022

Commits on Jul 1, 2022

  1. Fix: Handle unset union map type

    Without this check, an uninitialised (zero-value) `t.union` will get
    serialised as `null`, which then overrides the map's contents, leading
    to a panic:
    
      panic: assignment to entry in nil map
    
    By instead only unmarshalling this when we receive a non-nil version of
    the `t.union`, we can handle zero-value'd structs.
    Jamie Tanna committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    8eaf454 View commit details
    Browse the repository at this point in the history