Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutomic committed Jun 14, 2023
1 parent 87aa0ac commit f3f95e5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/routes/src/feeds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,7 @@ fn create_reply_and_mention_items(
let mut mention_items: Vec<Item> = mentions
.iter()
.map(|m| {
let mention_url = format!(
"/comment/{}",
protocol_and_hostname, m.post.id, m.comment.id
);
let mention_url = format!("{}/comment/{}", protocol_and_hostname, m.comment.id);
build_item(
&m.creator.name,
&m.comment.published,
Expand Down

0 comments on commit f3f95e5

Please sign in to comment.