Revert "Disable failures of Certificate Transparancy"

This reverts commit 36aa95187f.
This commit is contained in:
M66B
2025-06-22 10:05:16 +02:00
parent 36aa95187f
commit 86aa433a5a

View File

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