bump conduwuit version to 0.1.3

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-02-18 21:52:43 -05:00 committed by June
parent 9a6a77974b
commit bdda875416
3 changed files with 4 additions and 4 deletions

View file

@ -993,8 +993,8 @@ impl Service {
&local_user, &room_id
);
if let Err(e) = leave_room(&local_user, room_id, None).await {
error!("Error attempting to make local user {} leave room {} during room banning: {}", &local_user, &room_id, e);
return Ok(RoomMessageEventContent::text_plain(format!("Error attempting to make local user {} leave room {} during room banning (room is still banned but not removing any more users): {}\nIf you would like to ignore errors, use --force", &local_user, &room_id, e)));
error!("Error attempting to make local user {} leave room {} during bulk room banning: {}", &local_user, &room_id, e);
return Ok(RoomMessageEventContent::text_plain(format!("Error attempting to make local user {} leave room {} during room banning (room is still banned but not removing any more users and not banning any more rooms): {}\nIf you would like to ignore errors, use --force", &local_user, &room_id, e)));
}
}
}