Skip to content

Commit

Permalink
Add better not found message
Browse files Browse the repository at this point in the history
  • Loading branch information
jmshrv committed Oct 11, 2023
1 parent 9b89323 commit 45818ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ pub async fn verify(

println!("Failed to find {student_id} :(");

ctx.say("Not found :(").await?;
ctx.say(
"Couldn't find your membership. Please sign up at https://hacksoc.net/join and try again.",
)
.await?;

Ok(())
}
Expand Down

0 comments on commit 45818ea

Please sign in to comment.