mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 11:42:05 +00:00
fix: Streaming server settings - use empty string instead of null for remoteHttps
Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
This commit is contained in:
parent
92586ee9c1
commit
28d5252b11
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