From fdfa2baaef12b66e428a6d432fefe3616a7dd646 Mon Sep 17 00:00:00 2001 From: alyssa Date: Sun, 6 Jul 2025 12:58:52 +0000 Subject: [PATCH] chore: bump max switch limit in import --- PluralKit.Core/Utils/BulkImporter/PluralKitImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Core/Utils/BulkImporter/PluralKitImport.cs b/PluralKit.Core/Utils/BulkImporter/PluralKitImport.cs index 816dd618..f972c728 100644 --- a/PluralKit.Core/Utils/BulkImporter/PluralKitImport.cs +++ b/PluralKit.Core/Utils/BulkImporter/PluralKitImport.cs @@ -205,7 +205,7 @@ public partial class BulkImporter ? existingSwitches.Select(sw => sw.Id).Max() : (SwitchId?)null; - if (switches.Count > 10000) + if (switches.Count > 100000) throw new ImportException("Too many switches present in import file."); // Import switch definitions