diff options
| author | taehoon <th.dev91@gmail.com> | 2019-03-21 21:58:02 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-03-21 21:58:02 -0400 |
| commit | 9fa1bc63b0d95a2cd0868c0356953117e25f0328 (patch) | |
| tree | eaa380d5bf9b1255299f47f17b59f79ca794a42a /src/modules/users.js | |
| parent | a64e744c1b4aca4bd4ec2ba78a364dd2bbf81b47 (diff) | |
No need to fetch mutes on load anymore 🙌
Diffstat (limited to 'src/modules/users.js')
| -rw-r--r-- | src/modules/users.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/users.js b/src/modules/users.js index bb9a717f..9b7b29e7 100644 --- a/src/modules/users.js +++ b/src/modules/users.js @@ -365,11 +365,6 @@ const users = { // Start getting fresh posts. store.dispatch('startFetching', { timeline: 'friends' }) - // Fetch mutes - // TODO: We should not show timeline until fetchMutes is resolved - // However, we can get rid of this logic totally if we can know user muted state from user object - store.dispatch('fetchMutes') - // Fetch our friends store.rootState.api.backendInteractor.fetchFriends({ id: user.id }) .then((friends) => commit('addNewUsers', friends)) |
