Skip to content
Snippets Groups Projects

Fix #286 favs timeline fetching when opening profile via direct url

Merged Shpuld Shpludson requested to merge fix/favorites-timelines-fetching-on-direct-url into develop
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading