mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-26 10:34:23 +01:00
Load json even if signalingKey is missing
Is the case when the account is registered, but not verified
This commit is contained in:
@@ -81,7 +81,9 @@ public class Manager {
|
||||
JSONObject in = new JSONObject(IOUtils.toString(new FileInputStream(getFileName())));
|
||||
username = in.getString("username");
|
||||
password = in.getString("password");
|
||||
signalingKey = in.getString("signalingKey");
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user