Skip to content

Commit

Permalink
自身のメールを除外するのに失敗していた問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
oka4shi committed Jan 25, 2024
1 parent 31bd74c commit 3c6f1e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gas/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function main() {
const from = message.getFrom();

if (
from != myEmail &&
from.includes(myEmail) &&
now.getTime() - date.getTime() < 1000 * 60 * 60 * 12 &&
!pastMails.includes(id)
) {
Expand Down

0 comments on commit 3c6f1e5

Please sign in to comment.