Force expired false if updating target identifier

This commit is contained in:
Jake Barnby
2024-10-22 14:08:16 +13:00
parent 0f11c249b9
commit 99710e7b74
+3 -1
View File
@@ -4384,7 +4384,9 @@ App::put('/v1/account/targets/:targetId/push')
}
if ($identifier) {
$target->setAttribute('identifier', $identifier);
$target
->setAttribute('identifier', $identifier)
->setAtttibute('expired', false);
}
$detector = new Detector($request->getUserAgent());