Anonymize account

This commit is contained in:
M66B 2019-12-09 12:41:00 +01:00
parent f98e3ee1fe
commit e51278ed0f
1 changed files with 2 additions and 2 deletions

View File

@ -332,7 +332,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
@Override
public void run() {
Map<String, String> crumb = new HashMap<>();
crumb.put("account", accountNetworkState.toString());
crumb.put("account", accountNetworkState.accountState.id.toString());
crumb.put("connected", Boolean.toString(accountNetworkState.networkState.isConnected()));
crumb.put("suitable", Boolean.toString(accountNetworkState.networkState.isSuitable()));
crumb.put("unmetered", Boolean.toString(accountNetworkState.networkState.isUnmetered()));
@ -357,7 +357,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
@Override
public void run() {
Map<String, String> crumb = new HashMap<>();
crumb.put("account", accountNetworkState.toString());
crumb.put("account", accountNetworkState.accountState.id.toString());
crumb.put("connected", Boolean.toString(accountNetworkState.networkState.isConnected()));
crumb.put("suitable", Boolean.toString(accountNetworkState.networkState.isSuitable()));
crumb.put("unmetered", Boolean.toString(accountNetworkState.networkState.isUnmetered()));