Skip to content

Commit 4c6b4dc

Browse files
[STREAM-850] - Removed unnecessary check and updated changelog
1 parent 1fdb11b commit 4c6b4dc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/sessions/softphone-session-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)