mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
useMetaDetails videoId check fixed
This commit is contained in:
parent
90a5f2cd0c
commit
3bebf2f3ca
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ const mapMetaDetailsStateWithCtx = (meta_details, ctx) => {
|
|||
metaResource: meta_resource,
|
||||
type: meta_details.selected.meta_resource_ref.type_name,
|
||||
id: meta_details.selected.meta_resource_ref.id,
|
||||
videoId: meta_details.selected.streams_resource_ref ? meta_details.selected.streams_resource_ref.id : null
|
||||
videoId: meta_details.selected.streams_resource_ref !== null ? meta_details.selected.streams_resource_ref.id : null
|
||||
})
|
||||
:
|
||||
null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue