Skip to content
Snippets Groups Projects
Commit 426e53c6 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

account service: check registered name address

Change-Id: Iec7616ba55acfac9b506bf144625a8c1d588915f
parent a3a9f4c6
Branches
Tags
No related merge requests found
...@@ -1438,7 +1438,7 @@ public class AccountService { ...@@ -1438,7 +1438,7 @@ public class AccountService {
void registeredNameFound(String accountId, int state, String address, String name) { void registeredNameFound(String accountId, int state, String address, String name) {
// Log.d(TAG, "registeredNameFound: " + accountId + ", " + state + ", " + name + ", " + address); // Log.d(TAG, "registeredNameFound: " + accountId + ", " + state + ", " + name + ", " + address);
if (state == 0) { if (!StringUtils.isEmpty(address)) {
Account account = getAccount(accountId); Account account = getAccount(accountId);
if (account != null) { if (account != null) {
account.registeredNameFound(state, address, name); account.registeredNameFound(state, address, name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment