Set Retroshare image if no gxs identity is passed

This commit is contained in:
Angela Mazzurco 2017-07-09 12:23:02 +02:00
parent 0a3a04c245
commit 402a2562c5

View File

@ -39,6 +39,8 @@ Item
{ {
console.log("getDetails() ", compRoot.gxs_id ) console.log("getDetails() ", compRoot.gxs_id )
++compRoot.avatarAttemptCnt ++compRoot.avatarAttemptCnt
if (gxs_id)
{
rsApi.request( rsApi.request(
"/identity/get_identity_details", "/identity/get_identity_details",
JSON.stringify({ gxs_id: compRoot.gxs_id }), JSON.stringify({ gxs_id: compRoot.gxs_id }),
@ -50,6 +52,12 @@ Item
compRoot.avatarAttemptCnt < 3) getDetails() compRoot.avatarAttemptCnt < 3) getDetails()
}) })
} }
else
{
has_avatar = true
contactAvatar.source = "/icons/retroshare06.png"
}
}
function setDetails(data) function setDetails(data)
{ {
compRoot.has_avatar = data.avatar.length > 0 compRoot.has_avatar = data.avatar.length > 0