style: Fix IncompatibleRoomVersion log line

This commit is contained in:
nexy7574 2026-02-13 07:26:48 +00:00 committed by Jade Ellis
parent ff4dddd673
commit aa5400bcef
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -862,7 +862,7 @@ async fn make_join_request(
| ErrorKind::IncompatibleRoomVersion { room_version } => {
warn!(
"{remote_server} reports the room we are trying to join is \
version{room_version}, which we do not support: {e}."
v{room_version}, which we do not support."
);
return Err(e);
},