Skip to content

Commit

Permalink
WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
biglittlebigben committed Oct 11, 2024
1 parent e293ec5 commit 8622d73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/livekit-server-sdk/src/IngressClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ export interface CreateIngressOptions {
/**
* name of the room to send media to.
*/
roomName?: string;
roomName: string;
/**
* unique identity of the participant.
*/
participantIdentity?: string;
participantIdentity: string;
/**
* participant display name
*/
Expand Down Expand Up @@ -148,9 +148,9 @@ export class IngressClient extends ServiceBase {

if (opts !== undefined) {
name = opts.name || '';
roomName = opts.roomName || '';
roomName = opts.roomName;
participantName = opts.participantName || '';
participantIdentity = opts.participantIdentity || '';
participantIdentity = opts.participantIdentity;
bypassTranscoding = opts.bypassTranscoding || false;
enableTranscoding = opts.enableTranscoding;
url = opts.url || '';
Expand Down

0 comments on commit 8622d73

Please sign in to comment.