diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-12-21 15:24:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-21 15:24:41 -0500 |
| commit | 9782f5665ca3d65a8c35aff911cedd49fa38709c (patch) | |
| tree | 6fc62453e0470c770c78a5e2679848eba6aa4378 /RSSDP/SsdpCommunicationsServer.cs | |
| parent | f54ed748376184b3d5f4100ad8c64cef732c226a (diff) | |
| parent | ef671725559ef394337343af510ecb557b700d17 (diff) | |
Merge pull request #2362 from MediaBrowser/beta
Beta
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()); |
