fix LocalProfile upload

This commit is contained in:
Milos Kozak 2020-03-07 20:18:52 +01:00
parent a3ee216b21
commit 07aa6f2039

View file

@ -396,7 +396,7 @@ public class NSUpload {
public static void uploadProfileStore(JSONObject profileStore) { public static void uploadProfileStore(JSONObject profileStore) {
if (SP.getBoolean(R.string.key_ns_uploadlocalprofile, false)) { if (SP.getBoolean(R.string.key_ns_uploadlocalprofile, false)) {
UploadQueue.add(new DbRequest("dbAdd", "profile", String.valueOf(profileStore))); UploadQueue.add(new DbRequest("dbAdd", "profile", profileStore));
} }
} }