Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Fix screenshare trying to change the encodingQuality (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
szebniok authored Nov 22, 2023
1 parent 1a2273f commit acf04a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/src/pages/room/components/StreamPlayer/Tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Tile: FC<TileProps> = ({ tile, className, forceEncoding, showSimulcast, pi
showSimulcast={false}
blockFillContent={true}
forceEncoding={forceEncoding || null}
encodingQuality={tile.video?.encodingQuality || null}
encodingQuality={null}
remoteTrackId={tile.video?.remoteTrackId || null}
/>
);
Expand Down

0 comments on commit acf04a8

Please sign in to comment.