Merge pull request #9320 from MBR-0001/master

Fix NRE in DisposeAsyncCore
pull/9321/head
Claus Vium 2 years ago committed by GitHub
commit 3fe64f69b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1184,6 +1184,8 @@ namespace Emby.Server.Implementations
}
}
if (_sessionManager != null)
{
// used for closing websockets
foreach (var session in _sessionManager.Sessions)
{
@ -1191,4 +1193,5 @@ namespace Emby.Server.Implementations
}
}
}
}
}

Loading…
Cancel
Save