Fix clippy.

pull/4055/head
Dessalines 2023-10-17 15:20:12 -04:00
parent 0af53bd888
commit 9e6a6ed356
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
if let Some(post_id) = data.post_id {