crypto: Fix a typo.

Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
master
poljar 2021-03-10 09:54:33 +01:00 committed by GitHub
parent 560aa5b0a9
commit 4a8c30527d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ impl GroupSessionManager {
let results = join_all(tasks).await;
for result in results {
let (used_session, message) = result.expect("Encryption task paniced")?;
let (used_session, message) = result.expect("Encryption task panicked")?;
if let Some(session) = used_session {
changed_sessions.push(session);