mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-22 09:32:52 +02:00
Do not show tile for incoming call
This commit is contained in:
+6
-2
@@ -73,8 +73,12 @@ class RoomDirectCallStatusBubbleCell: RoomBaseCallBubbleCell {
|
||||
.remotelyOnHold:
|
||||
statusTextView.text = VectorL10n.eventFormatterCallYouCurrentlyIn
|
||||
case .ringing:
|
||||
// TODO: Waiting for design decision here
|
||||
statusTextView.text = nil
|
||||
if call.isIncoming {
|
||||
// should not be here
|
||||
statusTextView.text = nil
|
||||
} else {
|
||||
statusTextView.text = VectorL10n.eventFormatterCallYouCurrentlyIn
|
||||
}
|
||||
case .ended:
|
||||
switch call.endReason {
|
||||
case .unknown,
|
||||
|
||||
Reference in New Issue
Block a user