Skip to content

Commit

Permalink
Remove unnecessary .iter()
Browse files Browse the repository at this point in the history
  • Loading branch information
gferon committed Oct 22, 2024
1 parent 6db0923 commit d79a78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sender.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ where
let mut needs_sync_in_results = false;

for (recipient, unidentified_access, include_pni_signature) in
recipients.as_ref().iter()
recipients.as_ref()
{
let result = self
.try_send_message(
Expand Down

0 comments on commit d79a78f

Please sign in to comment.