Skip to content
Snippets Groups Projects
Commit 4585a9a3 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#17158: Fix credential management when creating new account

parent c78f41ff
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,6 @@ public class ConfigurationManagerCallback extends ConfigurationCallback {
@Override
public void on_account_state_changed() {
Log.i(TAG, "on_account_state_changed ninja!!!!!!!!!!!!!!");
sendAccountsChangedMessage();
}
......
......@@ -172,6 +172,7 @@ public class AccountDetailsHandler {
swigmap.set(ServiceConstants.CONFIG_ACCOUNT_ALIAS, nativemap.get(ServiceConstants.CONFIG_ACCOUNT_ALIAS));
swigmap.set(ServiceConstants.CONFIG_ACCOUNT_HOSTNAME, nativemap.get(ServiceConstants.CONFIG_ACCOUNT_HOSTNAME));
swigmap.set(ServiceConstants.CONFIG_ACCOUNT_USERNAME, nativemap.get(ServiceConstants.CONFIG_ACCOUNT_USERNAME));
swigmap.set(ServiceConstants.CONFIG_ACCOUNT_PASSWORD, nativemap.get(ServiceConstants.CONFIG_ACCOUNT_PASSWORD));
swigmap.set(ServiceConstants.CONFIG_ACCOUNT_ROUTESET, nativemap.get(ServiceConstants.CONFIG_ACCOUNT_ROUTESET));
swigmap.set(ServiceConstants.CONFIG_ACCOUNT_REGISTRATION_EXPIRE, nativemap.get(ServiceConstants.CONFIG_ACCOUNT_REGISTRATION_EXPIRE));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment