Устранены лишние многоточия в статусных сообщениях для исходящих и подключающихся звонков
All checks were successful
Android Kernel Build / build (push) Successful in 20m23s
All checks were successful
Android Kernel Build / build (push) Successful in 20m23s
This commit is contained in:
@@ -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"
|
||||
}
|
||||
|
||||
@@ -359,7 +359,7 @@ object CallManager {
|
||||
updateState {
|
||||
it.copy(
|
||||
phase = CallPhase.CONNECTING,
|
||||
statusText = "Connecting..."
|
||||
statusText = "Connecting"
|
||||
)
|
||||
}
|
||||
ensurePeerConnectionAndOffer()
|
||||
|
||||
Reference in New Issue
Block a user