From e30da60a5122791bf6101a31eb5a01969644daef Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 28 Aug 2024 20:17:27 +0200 Subject: remove zip functionality --- src/config.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index ad2ee22..8b9211c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -23,6 +23,8 @@ pub struct Config { pub retries: u32, /// Whether ezau should zip non-zipped logs. #[serde(default = "default_zip")] + // We don't use this anymore, but we keep it so old configs can be parsed and we can properly + // inform the user. pub zip: bool, /// Option Discord information for bot postings. pub discord: Option, @@ -63,7 +65,7 @@ pub fn load>(path: P) -> Result { } fn default_zip() -> bool { - true + false } fn default_dps_report_upload_url() -> String { -- cgit v1.2.3