fix wrong error message about presence

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-03-20 18:28:34 -04:00 committed by June
parent 9715b07b38
commit f06f30ca2a

View file

@ -280,7 +280,7 @@ async fn main() {
} }
if config.allow_outgoing_presence && !config.allow_local_presence { 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; return;
} }