forked from Ninjalama/streamyfin_mirror
fix: don't show if no next episode
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user