diff options
author | Alex Auvolat <alex@adnab.me> | 2022-07-13 11:39:13 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-07-13 11:39:13 +0200 |
commit | 33fa51021cce58e170ae0c943ab8c8b9fa94d6a9 (patch) | |
tree | 5b1c26f255b25549f293acf68837b966f42ebc60 /src/imap/command/authenticated.rs | |
parent | 70e0da90055039710856ea03b9022c2e5a687eaf (diff) | |
download | aerogramme-33fa51021cce58e170ae0c943ab8c8b9fa94d6a9.tar.gz aerogramme-33fa51021cce58e170ae0c943ab8c8b9fa94d6a9.zip |
Small changes to .update()
Diffstat (limited to 'src/imap/command/authenticated.rs')
-rw-r--r-- | src/imap/command/authenticated.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/imap/command/authenticated.rs b/src/imap/command/authenticated.rs index 7f6531c..6c2e43b 100644 --- a/src/imap/command/authenticated.rs +++ b/src/imap/command/authenticated.rs @@ -172,10 +172,7 @@ impl<'a> AuthenticatedContext<'a> { } else { "LIST completed" }; - Ok(( - Response::ok(msg)?.with_body(ret), - flow::Transition::None, - )) + Ok((Response::ok(msg)?.with_body(ret), flow::Transition::None)) } async fn status( |