You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Java client for Apple Push Notification service (APNs)
condition that starts on line 117
if (r.getDeviceConnectionStatus() != null
&& !
r.getNotificationStatus().equals(headerValue(response, "X-
DeviceConnectionStatus"))) {
continue;
}
should probably be changed to
if (r.getDeviceConnectionStatus() != null
&& !
r.getDeviceConnectionStatus().equals(headerValue(response, "X-
DeviceConnectionStatus"))) {
continue;
}
just a little typo, but was casing a null pointer down the road.
Jakob Jenkov
unread,
Feb 29, 2012, 4:15:14 PM2/29/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message