mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
refactor: change the rendering condition
This commit is contained in:
parent
0dbc4f759b
commit
36e3cf3a84
1 changed files with 1 additions and 1 deletions
|
|
@ -533,7 +533,7 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
}
|
||||
case 'KeyV': {
|
||||
closeMenus();
|
||||
if (player.metaItem !== null && player.metaItem.type === 'Ready' && player.metaItem.content.type === 'series') {
|
||||
if (player.metaItem !== null && player.metaItem.type === 'Ready' && player.metaItem.content.videos !== null) {
|
||||
toggleVideosMenu();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue