Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nbsp committed Jan 13, 2025
1 parent 3588d74 commit 9cd841a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents/src/multimodal/multimodal_agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ export class MultimodalAgent extends EventEmitter {

#getLocalTrackSid(): string | null {
if (!this.#localTrackSid && this.room && this.room.localParticipant) {
this.#localTrackSid = findMicroTrackId(this.room, this.room.localParticipant?.identity!);
this.#localTrackSid = findMicroTrackId(this.room, this.room.localParticipant!.identity!);
}
return this.#localTrackSid;
}
Expand Down

0 comments on commit 9cd841a

Please sign in to comment.