fix: don't show if no next episode

This commit is contained in:
Fredrik Burmester
2024-12-10 21:52:46 +01:00
parent 46f4acdad0
commit bfe96edb29

View File

@@ -706,7 +706,13 @@ export const Controls: React.FC<Props> = ({
buttonText="Skip Credits"
/>
<NextEpisodeCountDownButton
show={isVlc ? remainingTime < 10000 : remainingTime < 10}
show={
!nextItem
? false
: isVlc
? remainingTime < 10000
: remainingTime < 10
}
onFinish={goToNextItem}
onPress={goToNextItem}
/>