AntiMentionSpamPolicy: fix user age check

This commit is contained in:
Alex Gleason 2023-05-21 19:31:56 -05:00 committed by Mark Felder
parent 5e963736ce
commit 64cacc3694
1 changed files with 2 additions and 3 deletions

View File

@ -12,9 +12,8 @@ defp user_has_followers?(%User{} = u), do: u.follower_count > 0
defp user_has_posted?(%User{} = u), do: u.note_count > 0
defp user_has_age?(%User{} = u) do
now = NaiveDateTime.utc_now()
diff = u.inserted_at |> NaiveDateTime.diff(now, :second)
diff > :timer.seconds(30)
diff = NaiveDateTime.utc_now() |> NaiveDateTime.diff(u.inserted_at, :second)
diff >= :timer.seconds(30)
end
defp good_reputation?(%User{} = u) do