From bf4a138d6936d3896caba0d3181e0f689765c18d Mon Sep 17 00:00:00 2001 From: Mazarin Date: Thu, 12 Jan 2023 20:45:33 -0500 Subject: [PATCH] fix: fix reminders one more time (monicahq/chandler#405) --- .../ManageReminders/Jobs/ProcessScheduledContactReminders.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Domains/Contact/ManageReminders/Jobs/ProcessScheduledContactReminders.php b/app/Domains/Contact/ManageReminders/Jobs/ProcessScheduledContactReminders.php index b4c5e047faf..9da65252428 100644 --- a/app/Domains/Contact/ManageReminders/Jobs/ProcessScheduledContactReminders.php +++ b/app/Domains/Contact/ManageReminders/Jobs/ProcessScheduledContactReminders.php @@ -34,7 +34,6 @@ public function handle() $scheduledContactReminders = DB::table('contact_reminder_scheduled') ->where('scheduled_at', '<=', $currentDate) - ->where('triggered_at', null) ->get(); foreach ($scheduledContactReminders as $scheduledReminder) {