Browse code

Use specific timestamp to tag sent check in notifications to prevent multiple notifications

Benjamin Roth authored on29/08/2025 10:36:34
Showing1 changed files
... ...
@@ -226,7 +226,7 @@ class SendCheckInNotificationJob
226 226
                             $intNotificationsCount++;
227 227
                             $this->db->executeStatement(
228 228
                                 "UPDATE tl_vr_wa_reservation SET checked_in_nc_sent = ? WHERE id = ?",
229
-                                [$time, $Booking['id']]
229
+                                [time(), $Booking['id']]
230 230
                             );
231 231
                         }
232 232
                     }