Disable failures of Certificate Transparancy

See the link for why
This commit is contained in:
M66B
2025-06-21 22:51:25 +02:00
parent d2c71ae0af
commit 36aa95187f

View File

@@ -82,7 +82,7 @@ public class SSLHelper {
? new CTTrustManagerBuilder((X509TrustManager) tms[0])
.setDiskCache(new AndroidDiskCache(context))
.setLogger(logger)
.setFailOnError(!Helper.isPlayStoreInstall())
.setFailOnError(false) // https://github.com/appmattus/certificatetransparency/issues/143#issuecomment-2993753426
.build()
: (X509TrustManager) tms[0]);