From 63bd640791c99bf9d2cf9e9a0712243b446bfb81 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Wed, 15 Apr 2026 19:19:09 +0300 Subject: [PATCH] Removed old accounts edit --- .../main/kotlin/com/tutpro/baresip/BaresipService.kt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt index e7f9a3c3..fbb69c25 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt @@ -445,16 +445,6 @@ class BaresipService: Service() { showStatusNotification() - val accounts = Utils.getFileContents("$filesPath/accounts") - if ((accounts != null) && accounts.isNotEmpty()) { - Utils.putFileContents("$filesPath/accounts", - accounts.toString(Charsets.UTF_8).replace( - "pubint=0;call_transfer", - "pubint=0;inreq_allowed=yes;call_transfer" - ).toByteArray(Charsets.UTF_8) - ) - } - if (linkAddresses.isEmpty()) toast(getString(R.string.no_network), Toast.LENGTH_LONG)