diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-12-20 15:00:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-20 15:00:51 -0500 |
| commit | b4575306b8d407d967da928f9a6de97e52524459 (patch) | |
| tree | 8c05d7396745baa5901cd1ee2715dc86614854eb /RSSDP/SsdpCommunicationsServer.cs | |
| parent | c15acd0ebc9de14b6be82d30c53eeb9f499a9cdc (diff) | |
| parent | 7f7be26771bbc221dada2a9395da8182b512dd6c (diff) | |
Merge pull request #2360 from MediaBrowser/dev
Dev
Diffstat (limited to 'RSSDP/SsdpCommunicationsServer.cs')
| -rw-r--r-- | RSSDP/SsdpCommunicationsServer.cs | 4 |
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()); |
