Check account identifiers on the server before updating the account attributes

This commit is contained in:
AsamK 2022-06-21 17:18:16 +02:00
parent a4db5d616a
commit 9553b1ef00

View file

@ -231,6 +231,7 @@ class ManagerImpl implements Manager {
if (deviceName != null) { if (deviceName != null) {
context.getAccountHelper().setDeviceName(deviceName); context.getAccountHelper().setDeviceName(deviceName);
} }
context.getAccountHelper().checkWhoAmiI();
context.getAccountHelper().updateAccountAttributes(); context.getAccountHelper().updateAccountAttributes();
} }