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 <TheKodeToad@proton.me>
Signed-off-by: KTrain <69028025+KTrain5169@users.noreply.github.com>

---------

Signed-off-by: KTrain <69028025+KTrain5169@users.noreply.github.com>
Co-authored-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
KTrain 2024-08-05 22:22:49 +10:00 committed by GitHub
parent 2b49f3045e
commit 896ba37604
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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