Fixed type mapping for database handling.

This commit is contained in:
Tom
2025-03-19 23:36:59 +00:00
parent 6cd8997301
commit de3455ee8a
2 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,8 @@ namespace HermesSocketServer.Store.Internal
ImmutableList<V>? list = null;
lock (_lock)
{
if (!keys.Any() || !values.Any()) {
if (!keys.Any() || !values.Any())
{
return;
}