Skip to content

Commit

Permalink
Add flash string comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Aug 11, 2023
1 parent 01bbae3 commit e18a506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ESP_Mail_SMTP.h
Original file line number Diff line number Diff line change
Expand Up @@ -2611,8 +2611,8 @@ void ESP_Mail_Client::smtpCB(SMTPSession *smtp, PGM_P info, bool prependCRLF, bo
void ESP_Mail_Client::smtpErrorCB(SMTPSession *smtp, PGM_P info, bool prependCRLF, bool success)
{
#if !defined(SILENT_MODE)
MB_String e = esp_mail_str_12;
e += info;
MB_String e = esp_mail_str_12; /* "Error, " */
e += info;
smtpCB(smtp, e.c_str(), prependCRLF, success);
#endif
}
Expand Down

0 comments on commit e18a506

Please sign in to comment.