From b075f6d72f364c37a23084138780263a92a4ff17 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Mon, 15 Jun 2026 14:36:34 +0300 Subject: [PATCH] Fixed typo in comment --- app/src/main/kotlin/com/tutpro/baresip/Utils.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/Utils.kt b/app/src/main/kotlin/com/tutpro/baresip/Utils.kt index eadc56bd..155d6a68 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/Utils.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/Utils.kt @@ -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