Устранены лишние многоточия в статусных сообщениях для исходящих и подключающихся звонков
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 = val defaultStatus =
when (snapshot.phase) { when (snapshot.phase) {
CallPhase.INCOMING -> "Incoming call" CallPhase.INCOMING -> "Incoming call"
CallPhase.OUTGOING -> "Calling..." CallPhase.OUTGOING -> "Calling"
CallPhase.CONNECTING -> "Connecting..." CallPhase.CONNECTING -> "Connecting"
CallPhase.ACTIVE -> "Call in progress" CallPhase.ACTIVE -> "Call in progress"
CallPhase.IDLE -> "Call ended" CallPhase.IDLE -> "Call ended"
} }

View File

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