From 403c3180b79a89b5a52176daf04d98d504c4c25e Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Thu, 21 Aug 2025 15:29:25 +0200 Subject: [PATCH] =?UTF-8?q?Ref:=20Entfernt=20=C3=BCberfl=C3=BCssiges=20Lee?= =?UTF-8?q?rzeichen=20in=20der=20`storage`-Initialisierung=20im=20Konfigur?= =?UTF-8?q?ationsmodul?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 6a0d00f..99dd349 100644 --- a/src/config.rs +++ b/src/config.rs @@ -30,7 +30,7 @@ impl Default for AppConfig { general: General::default(), local: Local::default(), remote: Remote::default(), - storage: None, + storage: None, } } }