diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-03-10 19:58:45 +0000 |
|---|---|---|
| committer | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-03-10 19:58:45 +0000 |
| commit | 0960c945d04249e7ec4af2d7f74f53f1cfdd5116 (patch) | |
| tree | f487bde6e8797924739fb4c975ea993782c1ca18 /RSSDP/SsdpDeviceLocator.cs | |
| parent | a324d8a9c5351ec2f101f66e2f511eaf208f1254 (diff) | |
Revert "removed space"
This reverts commit a324d8a9c5351ec2f101f66e2f511eaf208f1254.
Diffstat (limited to 'RSSDP/SsdpDeviceLocator.cs')
| -rw-r--r-- | RSSDP/SsdpDeviceLocator.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/RSSDP/SsdpDeviceLocator.cs b/RSSDP/SsdpDeviceLocator.cs index 0cdc5ce3d..9a110683e 100644 --- a/RSSDP/SsdpDeviceLocator.cs +++ b/RSSDP/SsdpDeviceLocator.cs @@ -31,10 +31,11 @@ namespace Rssdp.Infrastructure { throw new ArgumentNullException(nameof(communicationsServer)); } - + _CommunicationsServer = communicationsServer; - _CommunicationsServer.ResponseReceived += CommsServer_ResponseReceived; + // This can occur is dlna is enabled, but defined to run over https. + _CommunicationsServer.ResponseReceived += CommsServer_ResponseReceived; _Devices = new List<DiscoveredSsdpDevice>(); } |
