mirror of
https://github.com/davegallant/rfd-notify.git
synced 2025-08-07 09:02:28 +00:00
Fix lint (#261)
This commit is contained in:
@@ -53,7 +53,7 @@ pub fn send(topic: &Topic, posts: &Posts, expression: &str, config: &Config) {
|
||||
debug!("Sending email notification.");
|
||||
|
||||
match sg.send(mail_info) {
|
||||
Err(err) => println!("SendGrid failed to send mail. Error: {}", err),
|
||||
Ok(body) => println!("SendGrid Response: {:?}", body),
|
||||
Err(err) => println!("SendGrid failed to send mail. Error: {err}"),
|
||||
Ok(body) => println!("SendGrid Response: {body:?}"),
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user