소스 검색

Ignore IPv6 DLNA devices

DLNA is not ready for IPv6 now, uncomment the code will be fine.
Xu Fasheng 6 년 전
부모
커밋
1eb26bdf08
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      Emby.Dlna/Main/DlnaEntryPoint.cs

+ 4 - 4
Emby.Dlna/Main/DlnaEntryPoint.cs

@@ -253,10 +253,10 @@ namespace Emby.Dlna.Main
             foreach (var address in addresses)
             {
                 // TODO: Remove this condition on platforms that support it
-                //if (address.AddressFamily == IpAddressFamily.InterNetworkV6)
-                //{
-                //    continue;
-                //}
+                if (address.AddressFamily == IpAddressFamily.InterNetworkV6)
+                {
+                   continue;
+                }
 
                 var fullService = "urn:schemas-upnp-org:device:MediaServer:1";