Log error for send_join auth_check failure.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-08-27 23:57:38 +00:00
parent 526a138021
commit f58081838e

View File

@@ -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?;