aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/SsdpDevicePublisher.cs
diff options
context:
space:
mode:
Diffstat (limited to 'RSSDP/SsdpDevicePublisher.cs')
-rw-r--r--RSSDP/SsdpDevicePublisher.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/RSSDP/SsdpDevicePublisher.cs b/RSSDP/SsdpDevicePublisher.cs
index 2646023e8..cee9b7f91 100644
--- a/RSSDP/SsdpDevicePublisher.cs
+++ b/RSSDP/SsdpDevicePublisher.cs
@@ -310,11 +310,16 @@ namespace Rssdp.Infrastructure
try
{
- await _CommsServer.SendMessage(System.Text.Encoding.UTF8.GetBytes(message), endPoint, receivedOnlocalIpAddress, cancellationToken).ConfigureAwait(false);
+ await _CommsServer.SendMessage(
+ System.Text.Encoding.UTF8.GetBytes(message),
+ endPoint,
+ receivedOnlocalIpAddress,
+ cancellationToken)
+ .ConfigureAwait(false);
}
catch (Exception)
{
-
+
}
//WriteTrace(String.Format("Sent search response to " + endPoint.ToString()), device);