crypto: Fix a typo.
Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>master
parent
560aa5b0a9
commit
4a8c30527d
|
@ -231,7 +231,7 @@ impl GroupSessionManager {
|
||||||
let results = join_all(tasks).await;
|
let results = join_all(tasks).await;
|
||||||
|
|
||||||
for result in results {
|
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 {
|
if let Some(session) = used_session {
|
||||||
changed_sessions.push(session);
|
changed_sessions.push(session);
|
||||||
|
|
Loading…
Reference in New Issue