diff options
Diffstat (limited to 'frontend/src/sagas')
-rw-r--r-- | frontend/src/sagas/errors.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/sagas/errors.js b/frontend/src/sagas/errors.js index 6d4df93d..441f3fb5 100644 --- a/frontend/src/sagas/errors.js +++ b/frontend/src/sagas/errors.js @@ -4,7 +4,7 @@ import { createSubscriptionChannel } from '../utils/websocket' import { actions } from '../redux/errors' export default function *errorHandlingSaga({ socket }) { - const errorChannel = yield call(createSubscriptionChannel, socket, '/user/queue/error') + const errorChannel = yield call(createSubscriptionChannel, socket, '/user/queue/errors') try { while (true) { const error = yield take(errorChannel) |