hotfix: dam broke my bot :(

This commit is contained in:
core 2023-07-22 12:53:28 -04:00
parent 2ce2aa475a
commit 54f2c3e5fa
Signed by: core
GPG Key ID: FDBF740DADDCEECF
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ async fn handle_packet(e: Event, config: &Config, client: &mut Client, ws_stream
info!("<{} ({})> {}", pkt.username().unwrap_or("SYSTEM".to_string()), pkt.uuid().map(|u| u.to_string()).unwrap_or("SYSTEM".to_string()), pkt.message()); info!("<{} ({})> {}", pkt.username().unwrap_or("SYSTEM".to_string()), pkt.uuid().map(|u| u.to_string()).unwrap_or("SYSTEM".to_string()), pkt.message());
handle_message(pkt.clone(), client, config).await; handle_message(pkt.clone(), client, config).await;
let re = Regex::new(r"@[a-z0-9_-]+:").unwrap(); let re = Regex::new(r"@[a-z0-9_\-.]+:").unwrap();
if !(re.is_match(&pkt.content()) && pkt.uuid() == Some(config.server.uuid)) { if !(re.is_match(&pkt.content()) && pkt.uuid() == Some(config.server.uuid)) {
info!("sending message"); info!("sending message");
ws_stream.send(Message::Text(serde_json::to_string(&GatewayPacketC2S::Relay { msg: GatewayChatMessage { ws_stream.send(Message::Text(serde_json::to_string(&GatewayPacketC2S::Relay { msg: GatewayChatMessage {