Skip to content

What is the status for this module on MX9.14? #1

Description

@Pluggr

This module needs to be imported into MX8 and exported to load it into MX9, otherwise the import fails.

Is it reliable to use this package for MX9.14?

Update:

I tried loading a JSON array into the non-persistent object, ran into a NullPointerException in Misc.java in 'traverseObject', caused because boolean hasChild is calculated and does not expect null.

Change
boolean hasChild = traversable(child);
To
boolean hasChild; if (child == null){ hasChild = false; } else { hasChild = traversable(child); }

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions