summaryrefslogtreecommitdiff
path: root/frontend/src/sagas
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas')
-rw-r--r--frontend/src/sagas/errors.js2
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)
bgstack15