diff --git a/package.json b/package.json index da6bde33d5..04f1c3c7c7 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "redux-thunk": "^2.1.0", "ringcentral": "^3.1.1", "ringcentral-client": "^1.0.0-rc1", - "ringcentral-integration": "^0.7.0-rc10", + "ringcentral-integration": "^0.7.0-rc13", "sass-loader": "^6.0.5", "source-map-loader": "^0.2.1", "style-loader": "^0.18.2", diff --git a/src/components/WebphoneAlert/i18n/en-US.js b/src/components/WebphoneAlert/i18n/en-US.js index 82329acf11..d00d185f9a 100644 --- a/src/components/WebphoneAlert/i18n/en-US.js +++ b/src/components/WebphoneAlert/i18n/en-US.js @@ -7,4 +7,5 @@ export default { [webphoneErrors.notOutboundCallWithoutDL]: 'Your extension is not allowed to make outbound calls with browser currently, please contact your account representative for an upgrade.', [webphoneErrors.getSipProvisionError]: 'You have no permission to send message.', [webphoneErrors.toVoiceMailError]: 'Cannot send call to voicemail due to internal error', + [webphoneErrors.muteError]: 'Call cannot be muted at the moment.', }; diff --git a/src/components/WebphoneAlert/index.js b/src/components/WebphoneAlert/index.js index a3b8c7b646..bf2de252f4 100644 --- a/src/components/WebphoneAlert/index.js +++ b/src/components/WebphoneAlert/index.js @@ -21,6 +21,7 @@ WebphoneAlert.handleMessage = ({ message }) => ( (message === webphoneErrors.browserNotSupported) || (message === webphoneErrors.webphoneCountOverLimit) || (message === webphoneErrors.notOutboundCallWithoutDL) || - (message === webphoneErrors.toVoiceMailError) + (message === webphoneErrors.toVoiceMailError) || + (message === webphoneErrors.muteError) ); diff --git a/yarn.lock b/yarn.lock index 132df9c16c..62fe0e278e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6047,9 +6047,9 @@ ringcentral-client@^1.0.0-rc1: form-data "^2.1.2" isomorphic-fetch "^2.2.1" -ringcentral-integration@^0.7.0-rc10: - version "0.7.0-rc10" - resolved "https://registry.yarnpkg.com/ringcentral-integration/-/ringcentral-integration-0.7.0-rc10.tgz#b3dc7fbbf5e0720a58fa3054002ca5e8b239e40a" +ringcentral-integration@^0.7.0-rc13: + version "0.7.0-rc13" + resolved "https://registry.yarnpkg.com/ringcentral-integration/-/ringcentral-integration-0.7.0-rc13.tgz#5b32203faa072bf6a29ae6549905e4fa0d3a23d6" dependencies: file-loader "^0.11.2" json-mask "^0.3.8"