Skip to content

Commit 69ebafe

Browse files
committed
eslint eqeqeq
1 parent 61df580 commit 69ebafe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gmail/sendingEmails/sendingEmails.gs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function sendEmails2() {
5757
var emailAddress = row[0]; // First column
5858
var message = row[1]; // Second column
5959
var emailSent = row[2]; // Third column
60-
if (emailSent != EMAIL_SENT) { // Prevents sending duplicates
60+
if (emailSent !== EMAIL_SENT) { // Prevents sending duplicates
6161
var subject = 'Sending emails from a Spreadsheet';
6262
MailApp.sendEmail(emailAddress, subject, message);
6363
sheet.getRange(startRow + i, 3).setValue(EMAIL_SENT);

0 commit comments

Comments
 (0)