mirror of https://github.com/LemmyNet/lemmy.git
Remove unecessary &
parent
05722f9b79
commit
0af53bd888
|
@ -13,7 +13,7 @@ pub async fn mark_post_as_read(
|
|||
) -> Result<Json<SuccessResponse>, LemmyError> {
|
||||
let mut post_ids = HashSet::new();
|
||||
if let Some(post_ids_) = &data.post_ids {
|
||||
post_ids.extend(&post_ids_.iter().cloned().collect::<HashSet<_>>());
|
||||
post_ids.extend(post_ids_.iter().cloned().collect::<HashSet<_>>());
|
||||
}
|
||||
|
||||
if let Some(post_id) = data.post_id {
|
||||
|
|
Loading…
Reference in New Issue