diff options
| author | tusooa <tusooa@kazv.moe> | 2022-11-24 23:11:30 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2022-11-24 23:12:08 -0500 |
| commit | 4b252ea8d3bf672a8eaa5abd7dcb866e47273df7 (patch) | |
| tree | 563f5d80b7ac6d45f650e47cd7fdaa3e80d18750 /src/modules/users.js | |
| parent | 2e3d4d772835b5de8750db2e8669c1abc4903994 (diff) | |
Fix fetchTimeline error
Diffstat (limited to 'src/modules/users.js')
| -rw-r--r-- | src/modules/users.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/users.js b/src/modules/users.js index eef87c2c..10b4603f 100644 --- a/src/modules/users.js +++ b/src/modules/users.js @@ -588,7 +588,7 @@ const users = { } if (store.getters.mergedConfig.useStreamingApi) { - store.dispatch('fetchTimeline', 'friends', { since: null }) + store.dispatch('fetchTimeline', { timeline: 'friends', since: null }) store.dispatch('fetchNotifications', { since: null }) store.dispatch('enableMastoSockets', true).catch((error) => { console.error('Failed initializing MastoAPI Streaming socket', error) |
