mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Catch Exception when disposing connection
This commit is contained in:
parent
65f6c2e2fd
commit
58ed50c9d0
1 changed files with 5 additions and 0 deletions
|
@ -232,6 +232,11 @@ namespace MediaBrowser.Controller.Net
|
|||
// TODO Investigate and properly fix.
|
||||
Logger.LogError(ex, "Object Disposed");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
// TODO Investigate and properly fix.
|
||||
Logger.LogError(ex, "Object Disposed Exception");
|
||||
}
|
||||
|
||||
lock (_activeConnections)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue