From c3fb152735ceb95bf78724e991bdc27a42df9794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Wed, 16 Apr 2025 07:59:37 +0200 Subject: [PATCH] Allow using r? even without the owners table The highfive bot hasn't been used in quite some time --- src/handlers/assign.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/handlers/assign.rs b/src/handlers/assign.rs index 23d34de7b..718db40e4 100644 --- a/src/handlers/assign.rs +++ b/src/handlers/assign.rs @@ -498,11 +498,6 @@ pub(super) async fn handle_command( return Ok(()); } AssignCommand::RequestReview { name } => { - if config.owners.is_empty() { - // To avoid conflicts with the highfive bot while transitioning, - // r? is ignored if `owners` is not configured in triagebot.toml. - return Ok(()); - } let db_client = ctx.db.get().await; if is_self_assign(&name, &event.user().login) { name.to_string()