diff options
| author | dave <starpumadev@gmail.com> | 2019-04-09 15:42:05 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-04-09 15:42:05 -0400 |
| commit | d498a26af5135e3f612769cf4f46bec978a99b20 (patch) | |
| tree | c5d86873a5ebbc23bcdf03e7559d040f5d3e8e39 /src/components/user_profile/user_profile.js | |
| parent | d3218807b4b363a09795857f9f366ad2a40d7d07 (diff) | |
| parent | d7cf841dfe6e434b27afed32ef2fcf214c5b6bc4 (diff) | |
Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma-fe into issue-436-mastoapi-notifications
Diffstat (limited to 'src/components/user_profile/user_profile.js')
| -rw-r--r-- | src/components/user_profile/user_profile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index 540de955..d55d1517 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -91,7 +91,7 @@ const UserProfile = { methods: { startFetchFavorites () { if (this.isUs) { - this.$store.dispatch('startFetching', { timeline: 'favorites', userId: this.userId }) + this.$store.dispatch('startFetchingTimeline', { timeline: 'favorites', userId: this.userId }) } }, fetchUserId () { @@ -119,8 +119,8 @@ const UserProfile = { }, startUp () { if (this.userId) { - this.$store.dispatch('startFetching', { timeline: 'user', userId: this.userId }) - this.$store.dispatch('startFetching', { timeline: 'media', userId: this.userId }) + this.$store.dispatch('startFetchingTimeline', { timeline: 'user', userId: this.userId }) + this.$store.dispatch('startFetchingTimeline', { timeline: 'media', userId: this.userId }) this.startFetchFavorites() } }, |
