Load json even if signalingKey is missing

Is the case when the account is registered, but not verified
This commit is contained in:
AsamK 2015-07-06 10:47:43 +02:00
parent 73e8c4cabf
commit 9d71313a0c

View file

@ -81,7 +81,9 @@ public class Manager {
JSONObject in = new JSONObject(IOUtils.toString(new FileInputStream(getFileName())));
username = in.getString("username");
password = in.getString("password");
if (in.has("signalingKey")) {
signalingKey = in.getString("signalingKey");
}
axolotlStore = new JsonAxolotlStore(in.getJSONObject("axolotlStore"));
registered = in.getBoolean("registered");
accountManager = new TextSecureAccountManager(URL, TRUST_STORE, username, password);