File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55
66# [ Unreleased] ( https://github.com/MyPureCloud/genesys-cloud-webrtc-sdk/compare/v11.3.0...HEAD )
77# Changed
8- * [ STREAM-850] ( https://inindca.atlassian.net/browse/STREAM-850 ) - Suppress benign error to not show on consumer UI
8+ * [ STREAM-850] ( https://inindca.atlassian.net/browse/STREAM-850 ) - Suppress ` error.ininedgecontrol.session.inactive ` errors to prevent consuming UIs from presenting benign errors
99
1010# [ v11.3.0] ( https://github.com/MyPureCloud/genesys-cloud-webrtc-sdk/compare/v11.2.3...v11.3.0 )
1111# Added
Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ export class SoftphoneSessionHandler extends BaseSessionHandler {
392392 callState : ICallStateFromParticipant
393393 ) : void {
394394 if ( callState . errorInfo ) {
395- if ( callState . errorInfo . code === 'error.ininedgecontrol.session.inactive' && callState . errorInfo . message . includes ( 'is inactive for' ) ) {
395+ if ( callState . errorInfo . code === 'error.ininedgecontrol.session.inactive' ) {
396396 return ;
397397 }
398398 this . debouncedEmitCallError ( update , participant , callState ) ;
You can’t perform that action at this time.
0 commit comments