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
the method CertificateUtils.validateCertificate does not support the APNs VoIP message
` if (!cn.toLowerCase(Locale.US).contains("push")) {
throw new CertificateException("Not a push certificate - " + cn);
}`
` if (production && cn.toLowerCase(Locale.US).contains("apple development ios push services")) {
throw new CertificateEnvironmentMismatchException("Invalid environment for this certificate");
} else if (!production && cn.toLowerCase(Locale.US).contains("apple production ios push services")) {
throw new CertificateEnvironmentMismatchException("Invalid environment for this certificate");
}`
it may contains "voip services", not just "push"
The text was updated successfully, but these errors were encountered:
the method CertificateUtils.validateCertificate does not support the APNs VoIP message
it may contains "voip services", not just "push"
The text was updated successfully, but these errors were encountered: