diff --git a/Ring/Ring/Bridging/AccountCreation/AccountAdapter.mm b/Ring/Ring/Bridging/AccountCreation/AccountAdapter.mm index 715cafda12aae180b18335cd7e0a21cc66fc6bb8..c08f43498bd70c5da1d8f66d05c7eaefd1a7d6d4 100644 --- a/Ring/Ring/Bridging/AccountCreation/AccountAdapter.mm +++ b/Ring/Ring/Bridging/AccountCreation/AccountAdapter.mm @@ -91,11 +91,12 @@ static id <AccountAdapterDelegate> _delegate; })); confHandlers - .insert(exportable_callback<ConfigurationSignal::AccountAvatarReceived>([&](const std::string& account_id, const std::string& photo) { + .insert(exportable_callback<ConfigurationSignal::AccountProfileReceived>([&](const std::string& account_id, const std::string& displayName, const std::string& photo) { if (AccountAdapter.delegate) { NSString* accountId = [NSString stringWithUTF8String:account_id.c_str()]; NSString* avatarPhoto = [NSString stringWithUTF8String:photo.c_str()]; - [AccountAdapter.delegate receivedAccountPhotoFor:accountId photo:avatarPhoto]; + NSString* name = [NSString stringWithUTF8String:displayName.c_str()]; + [AccountAdapter.delegate receivedAccountProfileFor:accountId displayName: name photo:avatarPhoto]; } })); confHandlers diff --git a/Ring/Ring/Services/AccountAdapterDelegate.swift b/Ring/Ring/Services/AccountAdapterDelegate.swift index bc4ef584d000730c77fb3ce60f41164cafc3728a..622dbfb74db1736e252df03da406cc45352de632 100644 --- a/Ring/Ring/Services/AccountAdapterDelegate.swift +++ b/Ring/Ring/Services/AccountAdapterDelegate.swift @@ -25,6 +25,6 @@ func knownDevicesChanged(for account: String, devices: [String: String]) func exportOnRingEnded(for account: String, state: Int, pin: String) func deviceRevocationEnded(for account: String, state: Int, deviceId: String) - func receivedAccountPhoto(for account: String, photo: String) + func receivedAccountProfile(for account: String, displayName: String, photo: String) func migrationEnded(for account: String, status: String) } diff --git a/Ring/Ring/Services/AccountsService.swift b/Ring/Ring/Services/AccountsService.swift index 5769f4aa4c2b2ce4439551efc76ced038ddbd591..e2570bd4c77fe9c613c5aac7ec647ddde6a94629 100644 --- a/Ring/Ring/Services/AccountsService.swift +++ b/Ring/Ring/Services/AccountsService.swift @@ -831,7 +831,7 @@ class AccountsService: AccountAdapterDelegate { self.responseStream.onNext(event) } - func receivedAccountPhoto(for account: String, photo: String) { + func receivedAccountProfile(for account: String, displayName: String, photo: String) { do { if try !self.dbManager.createDatabaseForAccount(accountId: account) { return @@ -839,13 +839,16 @@ class AccountsService: AccountAdapterDelegate { } catch { return } - let accountDetails = getAccountDetails(fromAccountId: account) - let displayName: String? = accountDetails.get(withConfigKeyModel: ConfigKeyModel(withKey: ConfigKey.displayName)) + var name = displayName + if name.isEmpty { + let accountDetails = getAccountDetails(fromAccountId: account) + name = accountDetails.get(withConfigKeyModel: ConfigKeyModel(withKey: ConfigKey.displayName)) + } guard let accountToUpdate = self.getAccount(fromAccountId: account), let accountURI = AccountModelHelper .init(withAccount: accountToUpdate).uri else {return} - _ = self.dbManager.saveAccountProfile(alias: displayName, photo: photo, accountId: account, accountURI: accountURI) + _ = self.dbManager.saveAccountProfile(alias: name, photo: photo, accountId: account, accountURI: accountURI) } // MARK: Push Notifications