Skip to content

Commit

Permalink
Fix not using custom set stream name (blakeblackshear#5134)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Jan 18, 2023
1 parent ef9338f commit 2631a4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/routes/Camera.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default function Camera({ camera }) {
player = (
<Fragment>
<div className="max-w-5xl">
<MsePlayer camera={camera} />
<MsePlayer camera={cameraConfig.live.stream_name} />
</div>
</Fragment>
);
Expand All @@ -129,7 +129,7 @@ export default function Camera({ camera }) {
player = (
<Fragment>
<div className="max-w-5xl">
<WebRtcPlayer camera={camera} />
<WebRtcPlayer camera={cameraConfig.live.stream_name} />
</div>
</Fragment>
);
Expand Down

0 comments on commit 2631a4c

Please sign in to comment.