Simplify APNs payload for iOS visible notifications and fetch latest token

This commit is contained in:
Hamza-Ayed
2026-06-30 22:13:45 +03:00
parent 772f8b647d
commit 1b5d6eae44
2 changed files with 22 additions and 5 deletions

View File

@@ -133,7 +133,7 @@ try {
$spamCount = intval($stmtSpam->fetchColumn());
// Check if passenger has active FCM token
$sqlToken = "SELECT token FROM tokens WHERE passengerID = :pid LIMIT 1";
$sqlToken = "SELECT token FROM tokens WHERE passengerID = :pid ORDER BY id DESC LIMIT 1";
$stmtToken = $con->prepare($sqlToken);
$stmtToken->execute([':pid' => $passengerId]);
$fcmToken = $stmtToken->fetchColumn();