Skip to content

Commit

Permalink
make iphone live view play in line
Browse files Browse the repository at this point in the history
Fixes #133
  • Loading branch information
scottlamb committed Aug 22, 2024
1 parent 140f625 commit 04b49f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ even on minor releases, e.g. `v0.7.5` -> `v0.7.6`.
* bump minimum Rust version to 1.79.
* in UI's list view, add a tooltip on the end time which shows why the
recording ended.
* fix [#133](https://github.com/scottlamb/moonfire-nvr/issues/121):
iPhone live view.

## v0.7.16 (2024-05-30)

Expand Down
2 changes: 1 addition & 1 deletion ui/src/Live/LiveCamera.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ const LiveCamera = ({ mediaSourceApi, camera, chooser }: LiveCameraProps) => {
<Alert severity="error">{playbackState.message}</Alert>
</div>
)}
<video ref={videoRef} muted autoPlay />
<video ref={videoRef} muted autoPlay playsInline />
</Box>
);
};
Expand Down

0 comments on commit 04b49f0

Please sign in to comment.