Skip to content

Commit

Permalink
fix: remove null check
Browse files Browse the repository at this point in the history
  • Loading branch information
amar-1995 committed May 21, 2024
1 parent f8d4aa0 commit 524eae8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/hms-video-store/src/reactive-store/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ export class SDKToHMS {

static convertRoom(sdkRoom: sdkTypes.HMSRoom, sdkLocalPeerId?: string): Partial<HMSRoom> {
const { recording, rtmp, hls, transcriptions } = SDKToHMS.convertRecordingStreamingState(
sdkRoom?.recording,
sdkRoom?.rtmp,
sdkRoom?.hls,
sdkRoom?.transcriptions,
sdkRoom.recording,
sdkRoom.rtmp,
sdkRoom.hls,
sdkRoom.transcriptions,
);
return {
id: sdkRoom.id,
Expand Down

0 comments on commit 524eae8

Please sign in to comment.