diff options
| author | jasper <jasper92341@hotmail.com> | 2019-04-04 09:03:56 -0700 |
|---|---|---|
| committer | jasper <jasper92341@hotmail.com> | 2019-04-04 09:03:56 -0700 |
| commit | a1275be4c0c83dc848e402bb631990d0cb27bb8c (patch) | |
| tree | 29dc12d32451c9327bf8e2c89a4df1fd1c2749c5 /src/modules/users.js | |
| parent | 7c2b65e9a3645d0c6f8bd88abe6f10ff6b016a9c (diff) | |
Separate timeline and notification
Diffstat (limited to 'src/modules/users.js')
| -rw-r--r-- | src/modules/users.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/users.js b/src/modules/users.js index 3cfae1fc..b0c7f2f6 100644 --- a/src/modules/users.js +++ b/src/modules/users.js @@ -364,10 +364,10 @@ const users = { } // Start getting fresh posts. - store.dispatch('startFetching', { timeline: 'friends' }) + store.dispatch('startFetchingTimeline', { timeline: 'friends' }) // Start fetching notifications - store.dispatch('startFetching', { timeline: 'notifications' }) + store.dispatch('startFetchingNotifications') // Get user mutes store.dispatch('fetchMutes') |
