mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 15:52:02 +00:00
Merge pull request #663 from Stremio/fix/remote-https-disabled-option
fix: Streaming server settings - use empty string instead of null for remoteHttps
This commit is contained in:
commit
9c0f3bfec4
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ const useStreamingServerSettingsInputs = (streamingServer) => {
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
label: t('SETTINGS_DISABLED'),
|
label: t('SETTINGS_DISABLED'),
|
||||||
value: null,
|
value: '',
|
||||||
},
|
},
|
||||||
...streamingServer.networkInfo.content.availableInterfaces.map((address) => ({
|
...streamingServer.networkInfo.content.availableInterfaces.map((address) => ({
|
||||||
label: address,
|
label: address,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue