Update: 2026-07-30 02:27:45
This commit is contained in:
@@ -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'];
|
||||
|
||||
Reference in New Issue
Block a user