diff options
| author | Hakaba Hitoyo <hakabahitoyo@yahoo.co.jp> | 2019-08-15 17:19:49 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-08-15 17:19:49 +0000 |
| commit | dd340bb9e3c1a45aa9897cec5dc0432537d3c7d7 (patch) | |
| tree | b342fe872218d6a9def453d17d429fbebde7da7b | |
| parent | 877a71fa4189c0976d64e2bbbc0634e01d677d85 (diff) | |
Fix/Fix links to external users in Who to follow page
| -rw-r--r-- | src/components/who_to_follow/who_to_follow.js | 3 |
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) |
