Minor modifications

This commit is contained in:
Juha Heinanen
2026-02-02 03:06:50 +02:00
parent a8edab0baf
commit 5713c4c2e1
7 changed files with 11 additions and 19 deletions
@@ -257,8 +257,10 @@ class Account(val accp: Long) {
fun saveAccounts() {
var accounts = ""
for (a in accounts()) accounts = accounts + a.print() + "\n"
Utils.putFileContents(BaresipService.filesPath + "/accounts",
accounts.toByteArray(Charsets.UTF_8))
Utils.putFileContents(
BaresipService.filesPath + "/accounts",
accounts.toByteArray(Charsets.UTF_8)
)
// Log.d(TAG, "Saved accounts '${accounts}' to '${BaresipService.filesPath}/accounts'")
}