mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-08-08 20:17:31 +00:00
check if streaming server settings are loaded before sending them as laod args
This commit is contained in:
parent
2f2a4e4123
commit
4d97ed946a
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
0,
|
||||
forceTranscoding: forceTranscoding || casting,
|
||||
maxAudioChannels: settings.surroundSound ? 32 : 2,
|
||||
streamingServerSettings: streamingServer.settings.content,
|
||||
streamingServerSettings: streamingServer.settings.type === 'Ready' ? streamingServer.settings.content : null,
|
||||
streamingServerURL: streamingServer.baseUrl ?
|
||||
casting ?
|
||||
streamingServer.baseUrl
|
||||
|
|
|
|||
Loading…
Reference in a new issue