Inverted boolean for syncshells

This commit is contained in:
CakeAndBanana
2025-10-15 04:02:27 +02:00
parent 6beda853f7
commit 707c565ea9

View File

@@ -59,7 +59,7 @@ public sealed class SystemInfoService : BackgroundService
var allLightfinderItems = _redis.GetAllAsync<BroadcastRedisEntry>(allLightfinderKeys).GetAwaiter().GetResult();
var countLightFinderUsers = allLightfinderItems.Count;
var countLightFinderSyncshells = allLightfinderItems.Count(static l => string.IsNullOrEmpty(l.Value.GID));
var countLightFinderSyncshells = allLightfinderItems.Count(static l => !string.IsNullOrEmpty(l.Value.GID));
SystemInfoDto = new SystemInfoDto()
{