aboutsummaryrefslogtreecommitdiff
path: root/src/modules/chats.js
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-09-04 11:19:53 +0300
committerShpuld Shpuldson <shp@cock.li>2020-09-04 11:19:53 +0300
commit3fb35e8123d3a8cd151571b315b7ec4d7e0875c7 (patch)
treee473ffedfea68b8a3a5f661182e2e23928877510 /src/modules/chats.js
parent5b403ba7d13eaf851ae43e814c583ceb018e2d20 (diff)
rename to promiseInterval
Diffstat (limited to 'src/modules/chats.js')
-rw-r--r--src/modules/chats.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/chats.js b/src/modules/chats.js
index 45e4bdcc..60273a44 100644
--- a/src/modules/chats.js
+++ b/src/modules/chats.js
@@ -3,7 +3,7 @@ import { find, omitBy, orderBy, sumBy } from 'lodash'
import chatService from '../services/chat_service/chat_service.js'
import { parseChat, parseChatMessage } from '../services/entity_normalizer/entity_normalizer.service.js'
import { maybeShowChatNotification } from '../services/chat_utils/chat_utils.js'
-import { makeFetcher } from '../services/fetcher/fetcher.js'
+import { promiseInterval } from '../services/promise_interval/promise_interval.js'
const emptyChatList = () => ({
data: [],
@@ -46,7 +46,7 @@ const chats = {
const fetcher = () => dispatch('fetchChats', { latest: true })
fetcher()
commit('setChatListFetcher', {
- fetcher: () => makeFetcher(fetcher, 5000)
+ fetcher: () => promiseInterval(fetcher, 5000)
})
},
stopFetchingChats ({ commit }) {