Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Duplicate push notifications on iOS

This question is probably the same as Duplicate Apple APNS push notifications?, but since that one didn't get an answer, and I have some more information, I'll try to ask it again.

Steps to reproduce the problem:

  • Set notification center to display notifications as alerts, this will make the problem more obvious.
  • Make sure the app isn't running in the foreground.
  • Send 3 identical push-notifications in rapid succession.
  • Wait until the messages arrive at the phone, you will now have to dismiss the alert 3 times.
  • Now send 1 more notification, that isn't identical with the previous ones.
  • You now get that last notification, but you'll also get one of the previous notifications showing up once more. This is the problem.
  • If you continue to send single notifications, one of the first 3 will keep popping up when it shouldn't.

Here is a video that follow these steps, which clearly shows the problem:

http://youtu.be/TSqt8S4FY6w

We have just as Remy Gale did in the linked question above made sure that our notifications are sent in the correct way, and only once per notification. We have also tested this with both the sandbox-apns and the production-apns, both behave exactly the same.

The problem disappears if the app-badge is set to 0, which in turn removes all notifications from notification center. Removing the notifications manually doesn't help.

UIApplication *app = [UIApplication sharedApplication];
app.applicationIconBadgeNumber = 0;

But that isn't a solution.

The problem doesn't appear if all notifications contain unique text. Adding a GUID to the alert-text will make the problem disappear. Adding it to the apns-payload as a custom property or as a localized argument will however not help, so this is also not a solution.

This will probably rarely happen in a production environment with a live app, but it can happen, and when it does, it is really annoying for the users!

Does anyone know why this happen? Does anyone have a viable solution?

like image 626
TheQ Avatar asked Aug 06 '13 07:08

TheQ


1 Answers

This Google Group for Gmail has an entry from a user who has researched the bug a bit and includes a possible workaround. According to the entry the bug is not present in iOS 5 but was introduced with iOS 6.

The workaround is simply appending a random number of Zero-width non-joiner to the title in order to assure uniqueness.

like image 181
Don Avatar answered Oct 05 '22 22:10

Don