mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 15:38:07 +01:00
Discard APNs tokens if the APNs server reports that the token is expired
This commit is contained in:
committed by
Jon Chambers
parent
775889c0b6
commit
02b9ceb4c7
@@ -167,7 +167,7 @@ public class APNSender implements Managed, PushNotificationSender {
|
||||
} else {
|
||||
accepted = false;
|
||||
rejectionReason = response.getRejectionReason();
|
||||
unregistered = response.getRejectionReason().map(reason -> "Unregistered".equals(reason) || "BadDeviceToken".equals(reason))
|
||||
unregistered = response.getRejectionReason().map(reason -> "Unregistered".equals(reason) || "BadDeviceToken".equals(reason) || "ExpiredToken".equals(reason))
|
||||
.orElse(false);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user