Skip to content

Commit

Permalink
update user register login
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalgust committed Jul 25, 2024
1 parent d5eb6bf commit 2465202
Show file tree
Hide file tree
Showing 9 changed files with 440 additions and 226 deletions.
3 changes: 2 additions & 1 deletion extlib/xgui/src/main/java/org/mini/apploader/AppLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,8 @@ public static void setHomeIconY(int y) {
}

public static String getProperty(String key) {
return appinfo.getProperty(key);
String s = appinfo.getProperty(key);
return s == null ? "" : s;
}

public static void setProperty(String key, String val) {
Expand Down
Loading

0 comments on commit 2465202

Please sign in to comment.