Hello everybody!
Noticed a strange thing in the cloud console.
I am the only one logged into the android application, the daily notification counter shows 5 pushes … A colleague sends me a message, a push arrives and after refreshing the page the console shows 7 push notifications. How can this be? Why does 1 push actually count as 2?
The reason for this behavior is that records of tokens of unused devices may remain in the database.
Solution:
remove applications from all devices used;
find the old token in the database by user id Db.getCollection ('_ raix_push_app_tokens'). find ({userId: 'You-UserId'})
delete old token Db.getCollection ('_ raix_push_app_tokens'). deleteOne ({userId:' You-UserId})
install the application on the desired device and log in.
Now push notifications will come and be counted correctly in the cloud console.
Revision the devices used and leave the application only on the really needed ones, otherwise the push limit will be reached very quickly.