From e8aab37e5aad6c911ae7d87299663093dc190141 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Fri, 4 Aug 2023 19:59:54 +0400 Subject: [PATCH] fix(core/address_book): compile without `network` feature --- elfo-core/src/address_book.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elfo-core/src/address_book.rs b/elfo-core/src/address_book.rs index e072e832..baf4dcf2 100644 --- a/elfo-core/src/address_book.rs +++ b/elfo-core/src/address_book.rs @@ -192,7 +192,7 @@ impl AddressBook { }; #[cfg(not(feature = "network"))] - Self { local }; + Self { local } } #[cfg(feature = "network")]