mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] NPE Issue #506
This commit is contained in:
parent
21e92cffc6
commit
3e973c5de3
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ public String getSerializableProperty(String name) {
|
||||||
|
|
||||||
public void setSerializableProperty(String name, String value) {
|
public void setSerializableProperty(String name, String value) {
|
||||||
if (serializableProperties == null) serializableProperties = new HashMap<>();
|
if (serializableProperties == null) serializableProperties = new HashMap<>();
|
||||||
properties.put(name, value);
|
serializableProperties.put(name, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public pro.gravit.launchserver.auth.core.User getUser() {
|
public pro.gravit.launchserver.auth.core.User getUser() {
|
||||||
|
|
Loading…
Reference in a new issue