From c234ed6ed3ff120ff3e0bd4a2c81f4f82e776a3a Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Tue, 14 Jun 2022 11:28:12 -0600 Subject: [PATCH] fixes #1169 --- backend/src/net/tor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/net/tor.rs b/backend/src/net/tor.rs index f0dedfe95..ed65db98f 100644 --- a/backend/src/net/tor.rs +++ b/backend/src/net/tor.rs @@ -351,6 +351,7 @@ impl TorControllerInner { .get_info("onions/current") .await? .lines() + .filter(|l| !l.trim().is_empty()) .map(|l| l.trim().parse().with_kind(ErrorKind::Tor)) .collect() }