aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/SsdpCommunicationsServer.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-12-21 15:24:41 -0500
committerGitHub <noreply@github.com>2016-12-21 15:24:41 -0500
commit9782f5665ca3d65a8c35aff911cedd49fa38709c (patch)
tree6fc62453e0470c770c78a5e2679848eba6aa4378 /RSSDP/SsdpCommunicationsServer.cs
parentf54ed748376184b3d5f4100ad8c64cef732c226a (diff)
parentef671725559ef394337343af510ecb557b700d17 (diff)
Merge pull request #2362 from MediaBrowser/beta
Beta
Diffstat (limited to 'RSSDP/SsdpCommunicationsServer.cs')
-rw-r--r--RSSDP/SsdpCommunicationsServer.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/RSSDP/SsdpCommunicationsServer.cs b/RSSDP/SsdpCommunicationsServer.cs
index b709861d5..97f5ebbd0 100644
--- a/RSSDP/SsdpCommunicationsServer.cs
+++ b/RSSDP/SsdpCommunicationsServer.cs
@@ -183,6 +183,10 @@ namespace Rssdp.Infrastructure
{
await socket.SendAsync(messageData, messageData.Length, destination).ConfigureAwait(false);
}
+ catch (ObjectDisposedException)
+ {
+
+ }
catch (Exception ex)
{
_logger.ErrorException("Error sending socket message from {0} to {1}", ex, socket.LocalIPAddress.ToString(), destination.ToString());