Clear active sessions on application stopping

This commit is contained in:
Patrick Barron 2023-09-29 12:43:49 -04:00
parent 493de3297a
commit 59ec06c35c
1 changed files with 2 additions and 0 deletions

View File

@ -1823,6 +1823,8 @@ namespace Emby.Server.Implementations.Session
{
await session.DisposeAsync().ConfigureAwait(false);
}
_activeConnections.Clear();
}
}
}