1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-06-30 19:28:19 +02:00

Recognize admin commands without : after tag

Very useful since many Matrix clients don't insert : after user tags
This commit is contained in:
Jonathan Flueren 2023-05-15 19:25:57 +00:00
parent 1b9e63f426
commit f5e3b0e2dd

View file

@ -443,7 +443,8 @@ impl Service {
)?;
let server_user = format!("@conduit:{}", services().globals.server_name());
let to_conduit = body.starts_with(&format!("{server_user}: "));
let to_conduit = body.starts_with(&format!("{server_user}: "))
|| body.starts_with(&format!("{server_user} "));
// This will evaluate to false if the emergency password is set up so that
// the administrator can execute commands as conduit