diff --git a/package.json b/package.json index eaf5dfdc..cb8aec9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "qorus-ui", - "version": "2.0.11", + "version": "2.0.12", "description": "Qorus UI", "author": "Qore Technologies", "repository": { diff --git a/src/js/store/apievents/actions.ts b/src/js/store/apievents/actions.ts index 3d838ffc..d8971fab 100644 --- a/src/js/store/apievents/actions.ts +++ b/src/js/store/apievents/actions.ts @@ -892,12 +892,12 @@ const handleEvent = (url, data, dispatch, state) => { break; case 'CONNECTION_CREATED': if (state.api.remotes.sync) { - pipeline(eventstr, remotes.addConnection, info, dispatch); + pipeline(eventstr, remotes.addConnection, { ...info, ...info.info }, dispatch); } break; case 'CONNECTION_UPDATED': if (state.api.remotes.sync) { - pipeline(eventstr, remotes.updateConnection, info, dispatch); + pipeline(eventstr, remotes.updateConnection, { ...info, ...info.info }, dispatch); } break; case 'CONNECTION_DELETED':