diff options
author | Alex Auvolat <alex@adnab.me> | 2022-07-12 15:31:29 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-07-12 15:31:29 +0200 |
commit | 5d6e4f73322b26038e76e6f915c6c79c5f03566e (patch) | |
tree | fe052de771cb5fb6f28cbcba03c2c63993063c70 /src/mail/mailbox.rs | |
parent | 7b888ed8cfecc30468c4a33e1f0a3e4bbced5df4 (diff) | |
download | aerogramme-5d6e4f73322b26038e76e6f915c6c79c5f03566e.tar.gz aerogramme-5d6e4f73322b26038e76e6f915c6c79c5f03566e.zip |
cleanup
Diffstat (limited to 'src/mail/mailbox.rs')
-rw-r--r-- | src/mail/mailbox.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mail/mailbox.rs b/src/mail/mailbox.rs index 7389173..efe98fd 100644 --- a/src/mail/mailbox.rs +++ b/src/mail/mailbox.rs @@ -125,7 +125,7 @@ impl Mailbox { bail!("Cannot copy into same mailbox"); } - let (mut selflock, mut fromlock); + let (mut selflock, fromlock); if self.id < from.id { selflock = self.mbox.write().await; fromlock = from.mbox.write().await; |