mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 21:24:34 +00:00
Cloud sync commands
This commit is contained in:
parent
16c5909ed8
commit
d0ce13fd3b
1 changed files with 6 additions and 4 deletions
|
@ -1552,12 +1552,12 @@ public class FragmentOptionsBackup extends FragmentBase implements SharedPrefere
|
|||
|
||||
JSONObject jroot = new JSONObject();
|
||||
jroot.put("version", 1);
|
||||
jroot.put("command", wipe ? "wipe" : "login");
|
||||
jroot.put("username", cloudUser);
|
||||
jroot.put("password", cloudPassword);
|
||||
jroot.put("wipe", wipe);
|
||||
jroot.put("debug", BuildConfig.DEBUG);
|
||||
|
||||
if (true) {
|
||||
if (false) {
|
||||
JSONArray jwrite = new JSONArray();
|
||||
|
||||
JSONObject jkv1 = new JSONObject();
|
||||
|
@ -1570,13 +1570,15 @@ public class FragmentOptionsBackup extends FragmentBase implements SharedPrefere
|
|||
jkv2.put("value", null);
|
||||
jwrite.put(jkv2);
|
||||
|
||||
jroot.put("write", jwrite);
|
||||
jroot.put("command", "write");
|
||||
jroot.put("items", jwrite);
|
||||
}
|
||||
|
||||
if (false) {
|
||||
JSONArray jread = new JSONArray();
|
||||
jread.put(transform("key1", key.second, true));
|
||||
jroot.put("read", jread);
|
||||
jroot.put("command", "read");
|
||||
jroot.put("items", jread);
|
||||
}
|
||||
|
||||
String request = jroot.toString();
|
||||
|
|
Loading…
Reference in a new issue