From 896ba376047ab22f844adaa5afa3b0e53a8dbac8 Mon Sep 17 00:00:00 2001 From: KTrain <69028025+KTrain5169@users.noreply.github.com> Date: Mon, 5 Aug 2024 22:22:49 +1000 Subject: [PATCH] improvement: reword message when no issues were found automatically (#379) * improvement: reword message when no issues were found automatically * Apply suggested change from TheKodeToad Co-authored-by: TheKodeToad Signed-off-by: KTrain <69028025+KTrain5169@users.noreply.github.com> --------- Signed-off-by: KTrain <69028025+KTrain5169@users.noreply.github.com> Co-authored-by: TheKodeToad --- src/handlers/event/analyze_logs/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/event/analyze_logs/mod.rs b/src/handlers/event/analyze_logs/mod.rs index 6b9cf3e..b125b02 100644 --- a/src/handlers/event/analyze_logs/mod.rs +++ b/src/handlers/event/analyze_logs/mod.rs @@ -49,7 +49,7 @@ pub async fn handle(ctx: &Context, message: &Message, data: &Data) -> Result<()> if issues.is_empty() { e = e .color(Colors::Green) - .description("No issues found automatically"); + .description("The automatic check didn't reveal any issues, but it's possible that some issues went undetected. Please wait for a volunteer to assist you."); } else { e = e.color(Colors::Red);