Log error for send_join auth_check failure.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
526a138021
commit
f58081838e
1 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use std::{borrow::Borrow, collections::HashMap, iter::once, sync::Arc};
|
||||
|
||||
use futures::{FutureExt, StreamExt, pin_mut};
|
||||
use futures::{FutureExt, StreamExt, TryFutureExt, pin_mut};
|
||||
use ruma::{
|
||||
CanonicalJsonObject, CanonicalJsonValue, OwnedServerName, OwnedUserId, RoomId, RoomVersionId,
|
||||
UserId,
|
||||
|
|
@ -443,6 +443,7 @@ pub async fn join_remote(
|
|||
self.services.timeline.get_pdu(event_id).await
|
||||
},
|
||||
)
|
||||
.inspect_err(|e| error!("send_join auth check failed: {e:?}"))
|
||||
.boxed()
|
||||
.await?;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue