diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-11-10 10:59:45 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2023-11-12 10:24:34 -0500 |
| commit | 9595636d6105bbe77292d87c7016c21f9df8d4c7 (patch) | |
| tree | 54e85fc71948a015bcd2ec872a590fd964c5aad8 /Emby.Dlna/Main | |
| parent | 223b15627029054c4d319e113bb0d2a39af890e0 (diff) | |
Move network utilities to MediaBrowser.Common
Diffstat (limited to 'Emby.Dlna/Main')
| -rw-r--r-- | Emby.Dlna/Main/DlnaHost.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Dlna/Main/DlnaHost.cs b/Emby.Dlna/Main/DlnaHost.cs index 3896b74a1b..26bf6d5e2c 100644 --- a/Emby.Dlna/Main/DlnaHost.cs +++ b/Emby.Dlna/Main/DlnaHost.cs @@ -10,7 +10,6 @@ using System.Threading.Tasks; using Emby.Dlna.PlayTo; using Emby.Dlna.Ssdp; using Jellyfin.Networking.Configuration; -using Jellyfin.Networking.Extensions; using MediaBrowser.Common.Configuration; using MediaBrowser.Common.Extensions; using MediaBrowser.Common.Net; @@ -280,7 +279,7 @@ public sealed class DlnaHost : IHostedService, IDisposable CacheLifetime = TimeSpan.FromSeconds(1800), // How long SSDP clients can cache this info. Location = uri.Uri, // Must point to the URL that serves your devices UPnP description document. Address = intf.Address, - PrefixLength = NetworkExtensions.MaskToCidr(intf.Subnet.Prefix), + PrefixLength = NetworkUtils.MaskToCidr(intf.Subnet.Prefix), FriendlyName = "Jellyfin", Manufacturer = "Jellyfin", ModelName = "Jellyfin Server", |
