You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the name of the application and/or the name of the certificate file contain ".dev", the APNS server is systematically the Apple development server.
(for me this is a big problem, as my application contains the term ".device")
I found the problem in /src/pushnotification/apple/apple-client.cc line 45
To solve it, you need to replace it with
const auto apn_server=StringUtils::endsWith(certName, ".dev") ? APN_DEV_ADDRESS : APN_PROD_ADDRESS;
That's all
The text was updated successfully, but these errors were encountered:
If the name of the application and/or the name of the certificate file contain ".dev", the APNS server is systematically the Apple development server.
(for me this is a big problem, as my application contains the term ".device")
I found the problem in /src/pushnotification/apple/apple-client.cc line 45
To solve it, you need to replace it with
That's all
The text was updated successfully, but these errors were encountered: