diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-02-27 20:01:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-27 20:01:51 +0100 |
| commit | 9e77fdc70df59cd8f6a60425c5e79c5aeb9b13c8 (patch) | |
| tree | c7d7f887c7c535d24927333262cf5fcb44c82cdc /Emby.Dlna/Main | |
| parent | e5f99762e2d15cfb9e81c92f948a5ee19d128748 (diff) | |
| parent | 73ca367bf9419b47e6be9487971bce90aec6b82d (diff) | |
Merge pull request #5312 from BaronGreenback/FixFor5280
Diffstat (limited to 'Emby.Dlna/Main')
| -rw-r--r-- | Emby.Dlna/Main/DlnaEntryPoint.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Emby.Dlna/Main/DlnaEntryPoint.cs b/Emby.Dlna/Main/DlnaEntryPoint.cs index 8f60c3f78..ec8716029 100644 --- a/Emby.Dlna/Main/DlnaEntryPoint.cs +++ b/Emby.Dlna/Main/DlnaEntryPoint.cs @@ -316,9 +316,12 @@ namespace Emby.Dlna.Main _logger.LogInformation("Registering publisher for {0} on {1}", fullService, address); var uri = new UriBuilder(_appHost.GetSmartApiUrl(address.Address) + descriptorUri); - // DLNA will only work over http, so we must reset to http:// : {port} - uri.Scheme = "http://"; - uri.Port = _netConfig.HttpServerPortNumber; + if (_appHost.PublishedServerUrl == null) + { + // DLNA will only work over http, so we must reset to http:// : {port}. + uri.Scheme = "http"; + uri.Port = _netConfig.HttpServerPortNumber; + } var device = new SsdpRootDevice { |
