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:
Tim 2024-09-19 09:30:55 +02:00 committed by GitHub
commit 9c0f3bfec4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,7 +70,7 @@ const useStreamingServerSettingsInputs = (streamingServer) => {
options: [
{
label: t('SETTINGS_DISABLED'),
value: null,
value: '',
},
...streamingServer.networkInfo.content.availableInterfaces.map((address) => ({
label: address,