Update: 2026-07-30 02:27:45

This commit is contained in:
Hamza-Ayed
2026-07-30 02:27:45 +03:00
parent 5f62455113
commit ca4a7c2e70
56 changed files with 3391 additions and 709 deletions
+8
View File
@@ -32,6 +32,14 @@ if (isset($data['push_token'])) {
$params[] = $data['push_token'];
}
// ActivityKit push token for the currently running Live Activity (iOS).
// This is a DIFFERENT token from the FCM registration token above: APNs
// liveactivity pushes must target this one specifically.
if (isset($data['live_activity_token'])) {
$updateFields[] = 'live_activity_token = ?';
$params[] = $data['live_activity_token'];
}
if (isset($data['app_version'])) {
$updateFields[] = 'app_version = ?';
$params[] = $data['app_version'];