From f06f30ca2a79cf3dff8acfc9459d67c772298ac3 Mon Sep 17 00:00:00 2001 From: strawberry Date: Wed, 20 Mar 2024 18:28:34 -0400 Subject: [PATCH] fix wrong error message about presence Signed-off-by: strawberry --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 03c9bdf6..08751a61 100644 --- a/src/main.rs +++ b/src/main.rs @@ -280,7 +280,7 @@ async fn main() { } if config.allow_outgoing_presence && !config.allow_local_presence { - error!("Outgoing presence requires allowing local presence. Please enable \"allow_outgoing_presence\"."); + error!("Outgoing presence requires allowing local presence. Please enable \"allow_local_presence\"."); return; }