mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-08 00:39:25 +01:00
Updated to latest version of code.
This commit is contained in:
@@ -302,8 +302,8 @@ namespace Rssdp.Infrastructure
|
||||
foreach (var device in deviceList)
|
||||
{
|
||||
var root = device.ToRootDevice();
|
||||
var source = new IPNetAddress(root.Address, root.SubnetMask);
|
||||
var destination = new IPNetAddress(remoteEndPoint.Address, root.SubnetMask);
|
||||
var source = new IPNetAddress(root.Address, root.PrefixLength);
|
||||
var destination = new IPNetAddress(remoteEndPoint.Address, root.PrefixLength);
|
||||
if (!_sendOnlyMatchedHost || source.NetworkAddress.Equals(destination.NetworkAddress))
|
||||
{
|
||||
SendDeviceSearchResponses(device, remoteEndPoint, receivedOnlocalIpAddress, cancellationToken);
|
||||
|
||||
Reference in New Issue
Block a user