summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/errors.js
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2017-05-13 23:23:33 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2017-05-13 23:23:33 +0200
commit14407dc495231b59f42fb66c4c414c8f5f2f8abc (patch)
tree36374f7b75384b06634b4b780300bcf3a086f851 /frontend/src/sagas/errors.js
parentFix typo in decision history log (diff)
downloadseven-wonders-14407dc495231b59f42fb66c4c414c8f5f2f8abc.tar.gz
seven-wonders-14407dc495231b59f42fb66c4c414c8f5f2f8abc.tar.bz2
seven-wonders-14407dc495231b59f42fb66c4c414c8f5f2f8abc.zip
Fix typo in error subscription path
Diffstat (limited to 'frontend/src/sagas/errors.js')
-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