From 7b967c9599319aad33b15d8313dde0e898ec9816 Mon Sep 17 00:00:00 2001 From: Dmitry Romanenko Date: Thu, 12 Sep 2024 23:36:40 +0000 Subject: [PATCH] Reduce upload limit back to 10 MB (#319) Thanks Discord... --- WFInfo/errorDialogue.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WFInfo/errorDialogue.xaml.cs b/WFInfo/errorDialogue.xaml.cs index 49e1cc47..af3c90c7 100644 --- a/WFInfo/errorDialogue.xaml.cs +++ b/WFInfo/errorDialogue.xaml.cs @@ -91,7 +91,7 @@ public void YesClick(object sender, RoutedEventArgs e) zip.AddFile(startPath + @"\..\debug.log", ""); zip.Comment = "This zip was created at " + closest.ToString("yyyy-MM-dd_HH-mm-ssff"); - zip.MaxOutputSegmentSize64 = 25000 * 1024; // 8m segments + zip.MaxOutputSegmentSize64 = 10000 * 1024; // 8m segments zip.Save(fullZipPath + ".zip"); } }