diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2017-05-13 23:23:33 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2017-05-13 23:23:33 +0200 |
commit | 14407dc495231b59f42fb66c4c414c8f5f2f8abc (patch) | |
tree | 36374f7b75384b06634b4b780300bcf3a086f851 /frontend/src/sagas/errors.js | |
parent | Fix typo in decision history log (diff) | |
download | seven-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.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) |