aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2019-08-15 17:19:49 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-08-15 17:19:49 +0000
commit9f6be4fe654a26d57c67cbe0f42cd3bbb1b37e92 (patch)
treeb342fe872218d6a9def453d17d429fbebde7da7b /src
parent877a71fa4189c0976d64e2bbbc0634e01d677d85 (diff)
parentdd340bb9e3c1a45aa9897cec5dc0432537d3c7d7 (diff)
Merge branch 'fix/fix-link-to-external-users-in-who-to-follow-page' into 'develop'
Fix/Fix links to external users in Who to follow page See merge request pleroma/pleroma-fe!918
Diffstat (limited to 'src')
-rw-r--r--src/components/who_to_follow/who_to_follow.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/who_to_follow/who_to_follow.js b/src/components/who_to_follow/who_to_follow.js
index f8100257..8fab6c4d 100644
--- a/src/components/who_to_follow/who_to_follow.js
+++ b/src/components/who_to_follow/who_to_follow.js
@@ -21,7 +21,8 @@ const WhoToFollow = {
name: i.display_name,
screen_name: i.acct,
profile_image_url: i.avatar || '/images/avi.png',
- profile_image_url_original: i.avatar || '/images/avi.png'
+ profile_image_url_original: i.avatar || '/images/avi.png',
+ statusnet_profile_url: i.url
}
this.users.push(user)