mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-18 17:02:12 +00:00
Merge pull request #346 from Stremio/fix/player-external-player-button
fix(Player): props issue on open in external player button
This commit is contained in:
commit
fd73e19f58
1 changed files with 1 additions and 1 deletions
|
|
@ -590,7 +590,7 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
<div className={styles['error-label']} title={error.message}>{error.message}</div>
|
||||
{
|
||||
player.selected !== null ?
|
||||
<Button {...player.selected.stream.deepLinks.externalPlayer} className={styles['playlist-button']} title={'Open in external player'} target={'_blank'}>
|
||||
<Button className={styles['playlist-button']} title={'Open in external player'} href={player.selected.stream.deepLinks.externalPlayer.href} download={player.selected.stream.deepLinks.externalPlayer.fileName} target={'_blank'}>
|
||||
<Icon className={styles['icon']} icon={'ic_downloads'} />
|
||||
<div className={styles['label']}>Open in external player</div>
|
||||
</Button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue