Skip to content

Commit

Permalink
fix(email): 7 days -> 5 days
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Dec 16, 2024
1 parent 6ef805c commit a14a94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/StrategicEmailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function (LastLoginDto $lastLoginDto): bool {
return true;
}

return $lastLoginAt->diff(new \DateTimeImmutable())->days >= 7;
return $lastLoginAt->diff(new \DateTimeImmutable())->days >= 5;
}
);

Expand Down

0 comments on commit a14a94b

Please sign in to comment.