Also add realm ruleset count

This commit is contained in:
Dean Herbert 2022-05-16 16:07:56 +09:00
parent 5ec05a8653
commit 9331c62306
1 changed files with 2 additions and 0 deletions

View File

@ -127,6 +127,8 @@ private void processLogEntry(LogEntry entry)
BeatmapSets = realm.All<BeatmapSetInfo>().Count(),
Beatmaps = realm.All<BeatmapInfo>().Count(),
Files = realm.All<RealmFile>().Count(),
Rulesets = realm.All<RulesetInfo>().Count(),
RulesetsAvailable = realm.All<RulesetInfo>().Count(r => r.Available),
Skins = realm.All<SkinInfo>().Count(),
}
};