Catch Exception when disposing connection

pull/9326/head
ipitio 1 year ago
parent 65f6c2e2fd
commit 58ed50c9d0

@ -232,6 +232,11 @@ namespace MediaBrowser.Controller.Net
// TODO Investigate and properly fix. // TODO Investigate and properly fix.
Logger.LogError(ex, "Object Disposed"); Logger.LogError(ex, "Object Disposed");
} }
catch (Exception ex)
{
// TODO Investigate and properly fix.
Logger.LogError(ex, "Object Disposed Exception");
}
lock (_activeConnections) lock (_activeConnections)
{ {

Loading…
Cancel
Save