-The GrapheneAccount class is crasing, now it is fixed

feat_androidx_migration
dtvv 2018-10-25 02:04:02 -05:00
parent b05cf62daf
commit a21796d2d0
1 changed files with 10 additions and 3 deletions

View File

@ -31,9 +31,16 @@ public class GrapheneAccount extends CryptoNetAccount {
}
public void loadInfo(GrapheneAccountInfo info){
this.name = info.getName();
this.accountId = info.getAccountId();
this.upgradedToLtm = info.getUpgradedToLtm();
if(info != null){
this.name = info.getName();
this.accountId = info.getAccountId();
this.upgradedToLtm = info.getUpgradedToLtm();
}
else{
this.name = "";
this.accountId = "-1";
this.upgradedToLtm = false;
}
}
public String getName() {