mobile download

This commit is contained in:
Macbook
2026-05-28 14:44:19 +09:00
parent e2816b037f
commit 3503ef33f5
152 changed files with 11021 additions and 687 deletions
@@ -174,6 +174,9 @@ public class AppSettingsService {
if (d.containsKey("trendSearchSettings")) {
s.setTrendSearchSettingsJson(toJson(d.get("trendSearchSettings")));
}
if (d.containsKey("uiPreferences")) {
s.setUiPreferencesJson(toJson(d.get("uiPreferences")));
}
}
private Map<String, Object> toMap(GcAppSettings s) {
@@ -226,6 +229,7 @@ public class AppSettingsService {
? s.getLiveAutoTradeBudgetPct().doubleValue() : 95);
m.put("fcmPushEnabled", s.getFcmPushEnabled() != null ? s.getFcmPushEnabled() : false);
m.put("trendSearchSettings", parseJson(s.getTrendSearchSettingsJson()));
m.put("uiPreferences", parseJson(s.getUiPreferencesJson()));
return m;
}