mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +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: [
|
||||
{
|
||||
label: t('SETTINGS_DISABLED'),
|
||||
value: null,
|
||||
value: '',
|
||||
},
|
||||
...streamingServer.networkInfo.content.availableInterfaces.map((address) => ({
|
||||
label: address,
|
||||
|
|
|
|||
Loading…
Reference in a new issue