diff --git a/src/app/boot/app_controller.nim b/src/app/boot/app_controller.nim index 61dd8f680a..0567c8a8ad 100644 --- a/src/app/boot/app_controller.nim +++ b/src/app/boot/app_controller.nim @@ -369,12 +369,10 @@ proc buildAndRegisterUserProfile(self: AppController) = elif(img.imgType == "thumbnail"): thumbnail = img.uri - let meAsContact = self.contactsService.getContactById(pubKey) - singletonInstance.userProfile.setFixedData(loggedInAccount.name, loggedInAccount.keyUid, pubKey) singletonInstance.userProfile.setDisplayName(displayName) singletonInstance.userProfile.setPreferredName(preferredName) - singletonInstance.userProfile.setEnsName(meAsContact.name) + singletonInstance.userProfile.setEnsName(firstEnsName) singletonInstance.userProfile.setFirstEnsName(firstEnsName) singletonInstance.userProfile.setThumbnailImage(thumbnail) singletonInstance.userProfile.setLargeImage(large)