Fix clippy.

This commit is contained in:
Dessalines 2023-10-17 15:20:12 -04:00
parent 0af53bd888
commit 9e6a6ed356

View File

@ -13,7 +13,7 @@ pub async fn mark_post_as_read(
) -> Result<Json<SuccessResponse>, LemmyError> { ) -> Result<Json<SuccessResponse>, LemmyError> {
let mut post_ids = HashSet::new(); let mut post_ids = HashSet::new();
if let Some(post_ids_) = &data.post_ids { 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 { if let Some(post_id) = data.post_id {