From fdf8086afa17c3e0c555904c0ee7540d15b4ad6c Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Tue, 10 Oct 2023 15:37:00 -0700 Subject: [PATCH] fix for rendering federated registry logo --- app/mobile/src/session/contact/useContact.hook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mobile/src/session/contact/useContact.hook.js b/app/mobile/src/session/contact/useContact.hook.js index 39661e3b..3145cd4f 100644 --- a/app/mobile/src/session/contact/useContact.hook.js +++ b/app/mobile/src/session/contact/useContact.hook.js @@ -69,7 +69,7 @@ export function useContact(contact, back) { const host = node ? node : server; const username = `${handle}/${node}` - const imageSource = imageSet ? { uri: getListingImageUrl(server, guid) } : avatar; + const imageSource = imageSet ? { uri: getListingImageUrl(host, guid) } : avatar; updateState({ guid, handle, node: host, name, location, description, imageSource, username, offsync: false, status: 'unsaved' }); } }, [contact, card.state, profile.state]);