diff --git a/PluralKit.Core/Services/DataFileService.cs b/PluralKit.Core/Services/DataFileService.cs index 87f3684c..c694a156 100644 --- a/PluralKit.Core/Services/DataFileService.cs +++ b/PluralKit.Core/Services/DataFileService.cs @@ -206,7 +206,8 @@ namespace PluralKit.Core [JsonIgnore] public bool Valid => TimeZoneValid && Members != null && - Members.Count <= Limits.MaxMemberCount && + // no need to check this here, it is checked later as part of the import + // Members.Count <= Limits.MaxMemberCount && Members.All(m => m.Valid) && Switches != null && Switches.Count < 10000 && @@ -363,4 +364,4 @@ namespace PluralKit.Core [JsonIgnore] public bool Valid => true; } -} \ No newline at end of file +}