From 95b027d432954c6d5377955cdc145e5316b84537 Mon Sep 17 00:00:00 2001 From: Iris System Date: Mon, 4 Sep 2023 10:13:33 +1200 Subject: [PATCH] fix: read stat counts from db as long (oopsie) --- .../Database/Repository/ModelRepository.Stats.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PluralKit.Core/Database/Repository/ModelRepository.Stats.cs b/PluralKit.Core/Database/Repository/ModelRepository.Stats.cs index a5a28a1d..7a1d4d5d 100644 --- a/PluralKit.Core/Database/Repository/ModelRepository.Stats.cs +++ b/PluralKit.Core/Database/Repository/ModelRepository.Stats.cs @@ -8,10 +8,10 @@ public partial class ModelRepository public class Counts { - public int SystemCount { get; } - public int MemberCount { get; } - public int GroupCount { get; } - public int SwitchCount { get; } - public int MessageCount { get; } + public long SystemCount { get; } + public long MemberCount { get; } + public long GroupCount { get; } + public long SwitchCount { get; } + public long MessageCount { get; } } } \ No newline at end of file