Skip to content

Commit

Permalink
Reduce upload limit back to 10 MB (#319)
Browse files Browse the repository at this point in the history
Thanks Discord...
  • Loading branch information
dimon222 authored Sep 12, 2024
1 parent 68a25f3 commit 7b967c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WFInfo/errorDialogue.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
Expand Down

0 comments on commit 7b967c9

Please sign in to comment.