Skip to content

Commit

Permalink
Update src/app/(core)/v/[slug]/player.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
t3dotgg and coderabbitai[bot] authored Oct 17, 2024
1 parent 1e76d78 commit 315ae19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(core)/v/[slug]/player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function parseMarkers(props: { vod: VOD; offset?: { totalSeconds: number } }) {
const timeStr = dayjs
.duration(marker.startTime * 1000)
.format("HH:mm:ss");
return `${acc}${marker.label} - ${timeStr}\n`;
return `${acc}${timeStr} ${marker.label}\n`;
}, "");

const csv = filteredMarkers
Expand Down

0 comments on commit 315ae19

Please sign in to comment.