Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 15792cf

Browse files
committed
Fixed hold/resume issue caused by 4cbbb51
1 parent 1e26084 commit 15792cf

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

release/SIPml-api.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tinyMEDIA/src/tmedia_session_jsep.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,8 @@ tmedia_session_jsep.prototype.__hold = function () {
371371
// tsk_utils_log_warn('already on hold');
372372
return;
373373
}
374+
this.my_mutex = false;
375+
374376
this.b_lo_held = true;
375377

376378
this.o_sdp_ro = null;
@@ -388,6 +390,8 @@ tmedia_session_jsep.prototype.__resume = function () {
388390
// tsk_utils_log_warn('not on hold');
389391
return;
390392
}
393+
this.my_mutex = false;
394+
391395
this.b_lo_held = false;
392396

393397
this.o_sdp_lo = null;

0 commit comments

Comments
 (0)