Skip to content

Commit e7f89f3

Browse files
authored
Merge pull request #1105 from vicistomin/main
Add ability to disable `autoStop` feature for SimpleUser
2 parents 2e1c525 + c0d3cb4 commit e7f89f3

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/platform/web/simple-user/simple-user-options.ts

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ export interface SimpleUserOptions {
6868
*/
6969
aor?: string;
7070

71+
/**
72+
* If `true`, the user agent calls the `stop()` method on the window event `beforeunload`.
73+
* @defaultValue `true`
74+
*/
75+
autoStop?: boolean;
76+
7177
/**
7278
* Delegate for SimpleUser.
7379
*/

src/platform/web/simple-user/simple-user.ts

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export class SimpleUser {
4444
// Session manager options
4545
const sessionManagerOptions: SessionManagerOptions = {
4646
aor: this.options.aor,
47+
autoStop: this.options.autoStop,
4748
delegate: {
4849
onCallAnswered: () => this.delegate?.onCallAnswered?.(),
4950
onCallCreated: (session: Session) => {

0 commit comments

Comments
 (0)