Skip to content
Snippets Groups Projects
Commit 2bbc75d6 authored by 🥺's avatar 🥺 :transgender_flag: Committed by 🥺
Browse files

why did i have to run cargo fmt twice

parent de303d94
No related branches found
No related tags found
No related merge requests found
...@@ -75,21 +75,21 @@ pub async fn report_event_route( ...@@ -75,21 +75,21 @@ pub async fn report_event_route(
services() services()
.admin .admin
.send_message(message::RoomMessageEventContent::text_html( .send_message(message::RoomMessageEventContent::text_html(
format!( format!(
"@room Report received from: {}\n\n\ "@room Report received from: {}\n\n\
Event ID: {}\n\ Event ID: {}\n\
Room ID: {}\n\ Room ID: {}\n\
Sent By: {}\n\n\ Sent By: {}\n\n\
Report Score: {}\n\ Report Score: {}\n\
Report Reason: {}", Report Reason: {}",
sender_user.to_owned(), sender_user.to_owned(),
pdu.event_id, pdu.event_id,
pdu.room_id, pdu.room_id,
pdu.sender.to_owned(), pdu.sender.to_owned(),
body.score.unwrap_or(ruma::Int::from(0)), body.score.unwrap_or(ruma::Int::from(0)),
body.reason.as_deref().unwrap_or("") body.reason.as_deref().unwrap_or("")
), ),
format!( format!(
"<details><summary>@room Report received from: <a href=\"https://matrix.to/#/{0}\">{0}\ "<details><summary>@room Report received from: <a href=\"https://matrix.to/#/{0}\">{0}\
</a></summary><ul><li>Event Info<ul><li>Event ID: <code>{1}</code>\ </a></summary><ul><li>Event Info<ul><li>Event ID: <code>{1}</code>\
<a href=\"https://matrix.to/#/{2}/{1}\">🔗</a></li><li>Room ID: <code>{2}</code>\ <a href=\"https://matrix.to/#/{2}/{1}\">🔗</a></li><li>Room ID: <code>{2}</code>\
...@@ -103,7 +103,7 @@ pub async fn report_event_route( ...@@ -103,7 +103,7 @@ pub async fn report_event_route(
body.score.unwrap_or(ruma::Int::from(0)), body.score.unwrap_or(ruma::Int::from(0)),
HtmlEscape(body.reason.as_deref().unwrap_or("")) HtmlEscape(body.reason.as_deref().unwrap_or(""))
), ),
)); ));
// even though this is kinda security by obscurity, let's still make a small random delay sending a successful response // even though this is kinda security by obscurity, let's still make a small random delay sending a successful response
// per spec suggestion regarding enumerating for potential events existing in our server. // per spec suggestion regarding enumerating for potential events existing in our server.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment