From 2a39387a4872a7fb5340c7e3569710ac9e7bf33d Mon Sep 17 00:00:00 2001 From: postscriptum Date: Sun, 22 Mar 2026 12:38:17 +0200 Subject: [PATCH] remove old error handler after list init relocation --- src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 0feff93..c79792e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,10 +46,6 @@ async fn rocket() -> _ { let list = Arc::new( List::from_opt(&opt.allow_list, opt.cache.clone()) .await - .map_err(|err| { - error!("Can't parse list: `{err}`"); - SocksError::ArgumentInputError("Can't parse list") - }) .unwrap(), );