diff options
| author | lambda <pleromagit@rogerbraun.net> | 2019-01-29 19:10:33 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2019-01-29 19:10:33 +0000 |
| commit | 43c26a4cd0b623aa39892452cf7a928b07948a46 (patch) | |
| tree | 67316d68850ef466f7fc0181aeb76a4071e7b403 /src | |
| parent | 3cfbf0141f9e5c2c835699c5427d4829da412328 (diff) | |
| parent | 0a0dffa793f2cea050507f811d1315348056348a (diff) | |
Merge branch 'fix/favorites-timelines-fetching-on-direct-url' into 'develop'
Fix #286 favs timeline fetching when opening profile via direct url
Closes #286
See merge request pleroma/pleroma-fe!495
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/user_profile/user_profile.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index 991062cd..27e138b0 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -36,7 +36,8 @@ const UserProfile = { return this.$route.params.name || this.user.screen_name }, isUs () { - return this.userId === this.$store.state.users.currentUser.id + return this.userId && this.$store.state.users.currentUser.id && + this.userId === this.$store.state.users.currentUser.id }, friends () { return this.user.friends |
