summaryrefslogtreecommitdiff
path: root/frontend/src/sagas.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas.js')
-rw-r--r--frontend/src/sagas.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/src/sagas.js b/frontend/src/sagas.js
index df49b099..c5166cd5 100644
--- a/frontend/src/sagas.js
+++ b/frontend/src/sagas.js
@@ -1,8 +1,9 @@
import { router } from 'redux-saga-router'
-import { call } from 'redux-saga/effects'
+import { call, fork } from 'redux-saga/effects'
import { makeSagaRoutes } from './routes'
-import createWsConnection from './utils/createWebSocketConnection'
+import { createWsConnection } from './utils/websocket'
+import errorHandlingSaga from './sagas/errors'
export default function *rootSaga(history) {
let wsConnection
@@ -12,6 +13,6 @@ export default function *rootSaga(history) {
console.error('Could not connect to socket')
return
}
-
+ yield fork(errorHandlingSaga, wsConnection)
yield* router(history, makeSagaRoutes(wsConnection))
}
bgstack15