mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Hide msg if dlna disabled
This commit is contained in:
parent
eafb8cf652
commit
2f843b3b48
1 changed files with 2 additions and 1 deletions
|
@ -128,7 +128,8 @@ namespace Emby.Dlna.Main
|
|||
|
||||
_netConfig = config.GetConfiguration<NetworkConfiguration>("network");
|
||||
_disabled = appHost.ListenWithHttps && _netConfig.RequireHttps;
|
||||
if (_disabled)
|
||||
|
||||
if (_disabled && _config.GetDlnaConfiguration().EnableServer)
|
||||
{
|
||||
_logger.LogError("The DLNA specification does not support HTTPS.");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue