Compare commits

..

No commits in common. "8de0d868954aada198a8b135947dd1b62b41a678" and "9a77824f7943203e80634d9ca573e1343715f69b" have entirely different histories.

2 changed files with 0 additions and 8 deletions

View file

@ -159,8 +159,6 @@ class ProfileDownloadFragment : BaseMaterialDialogFragment(),
) )
lifecycleScope.launch(Dispatchers.IO) { lifecycleScope.launch(Dispatchers.IO) {
ensureEuiccChannelManager()
// Fetch remaining NVRAM // Fetch remaining NVRAM
val str = channel.lpa.euiccInfo2?.freeNvram?.also { val str = channel.lpa.euiccInfo2?.freeNvram?.also {
freeNvram = it freeNvram = it

View file

@ -34,12 +34,6 @@ class HttpInterfaceImpl: HttpInterface {
val conn = parsedUrl.openConnection() as HttpsURLConnection val conn = parsedUrl.openConnection() as HttpsURLConnection
conn.connectTimeout = 2000 conn.connectTimeout = 2000
if (url.contains("handleNotification")) {
conn.connectTimeout = 1000
conn.readTimeout = 1000
}
conn.sslSocketFactory = sslContext.socketFactory conn.sslSocketFactory = sslContext.socketFactory
conn.requestMethod = "POST" conn.requestMethod = "POST"
conn.doInput = true conn.doInput = true