Устранены лишние многоточия в статусных сообщениях для исходящих и подключающихся звонков
All checks were successful
Android Kernel Build / build (push) Successful in 20m23s

This commit is contained in:
2026-03-29 14:12:13 +05:00
parent 26f4597c3b
commit 434ccef30c
2 changed files with 3 additions and 3 deletions

View File

@@ -158,8 +158,8 @@ class CallForegroundService : Service() {
val defaultStatus =
when (snapshot.phase) {
CallPhase.INCOMING -> "Incoming call"
CallPhase.OUTGOING -> "Calling..."
CallPhase.CONNECTING -> "Connecting..."
CallPhase.OUTGOING -> "Calling"
CallPhase.CONNECTING -> "Connecting"
CallPhase.ACTIVE -> "Call in progress"
CallPhase.IDLE -> "Call ended"
}

View File

@@ -359,7 +359,7 @@ object CallManager {
updateState {
it.copy(
phase = CallPhase.CONNECTING,
statusText = "Connecting..."
statusText = "Connecting"
)
}
ensurePeerConnectionAndOffer()