Fixed typo in comment

This commit is contained in:
Juha Heinanen
2026-06-15 14:36:34 +03:00
parent d4aa627e1a
commit b075f6d72f

View File

@ -1159,11 +1159,11 @@ object Utils {
}
}
// Create an SSLContext that uses our new composite TrsustManager
// Create an SSLContext that uses new composite TrustManager
val sslContext = SSLContext.getInstance("TLS")
sslContext.init(null, arrayOf(compositeTrustManager), null)
// Tell HttpsURLConnection to use our custom SSLContext for this connection
// Tell HttpsURLConnection to use custom SSLContext for this connection
urlConnection.sslSocketFactory = sslContext.socketFactory
// Proceed with the connection and return the result