Fix next/prev buttons href in player

This commit is contained in:
Zoe Roux 2025-12-20 13:04:05 +01:00
parent dffe469c1d
commit 19652d535d
No known key found for this signature in database

View File

@ -140,7 +140,7 @@ const ControlButtons = ({
<IconButton
icon={SkipPrevious}
as={Link}
href={previous}
href={`/watch/${previous}`}
replace
{...tooltip(t("player.previous"), true)}
{...spacing}
@ -151,7 +151,7 @@ const ControlButtons = ({
<IconButton
icon={SkipNext}
as={Link}
href={next}
href={`/watch/${next}`}
replace
{...tooltip(t("player.next"), true)}
{...spacing}