mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
fix(Player): do not show next video popup if nextVideo is null
This commit is contained in:
parent
e8f3291c34
commit
166fde9090
1 changed files with 1 additions and 1 deletions
|
|
@ -630,7 +630,7 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
onMouseOver={onBarMouseMove}
|
||||
/>
|
||||
{
|
||||
nextVideoPopupOpen ?
|
||||
player.nextVideo !== null && nextVideoPopupOpen ?
|
||||
<NextVideoPopup
|
||||
className={classnames(styles['layer'], styles['menu-layer'])}
|
||||
metaItem={player.metaItem !== null && player.metaItem.type === 'Ready' ? player.metaItem.content : null}
|
||||
|
|
|
|||
Loading…
Reference in a new issue