remove old error handler after list init relocation

This commit is contained in:
postscriptum 2026-03-22 12:38:17 +02:00
parent 8de35ff3a6
commit 2a39387a48

View file

@ -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(),
);