Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
umarniz committed Nov 28, 2024
1 parent 3af97e5 commit 45a9390
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/livekit-server-sdk/src/SipClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,12 @@ export class SipClient extends ServiceBase {
playRingtone: playDialtone,
playDialtone: playDialtone,
hidePhoneNumber: hidePhoneNumber,
ringingTimeout: ringingTimeout ? new Duration({ seconds: BigInt(ringingTimeout) }) : undefined,
maxCallDuration: maxCallDuration ? new Duration({ seconds: BigInt(maxCallDuration) }) : undefined,
ringingTimeout: ringingTimeout
? new Duration({ seconds: BigInt(ringingTimeout) })
: undefined,
maxCallDuration: maxCallDuration
? new Duration({ seconds: BigInt(maxCallDuration) })
: undefined,
enableKrisp: enableKrisp,
}).toJson();

Expand Down

0 comments on commit 45a9390

Please sign in to comment.