Skip to content

Commit

Permalink
decode order
Browse files Browse the repository at this point in the history
  • Loading branch information
kounoike committed Apr 30, 2023
1 parent 834c75a commit 3384a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/recorded/mp4/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function SearchPage() {
</AppBar>
<main className={styles.main}>
<VideoPlayer
src={"/encoded/" + mp4Path}
src={"/encoded/" + encodeURIComponent(decodeURIComponent(mp4Path))}
controls={true}
loop={false}
volume={0.6}
Expand Down

0 comments on commit 3384a16

Please sign in to comment.