Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Custom data not updating if setting value to null #1305

Open
markwoon opened this issue Feb 28, 2017 · 0 comments
Open

Custom data not updating if setting value to null #1305

markwoon opened this issue Feb 28, 2017 · 0 comments

Comments

@markwoon
Copy link

In pssuedo-code:

customData.set("foo", "something");
customData.save();
assertEquals("something", customData.get("foo"));

customData.set("foo", null");
customData.save();
assertNull(customData.get("foo"));  <-- fails, gets "something"
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants