Skip to content

Commit

Permalink
Update video call status text for started and accepted calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
aforge committed Oct 27, 2022
1 parent dd4f371 commit 25fe12a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tinodios/format/AbstractFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ class AbstractFormatter: DraftyFormatter {
comment = incoming ?
NSLocalizedString(MsgServerData.WebRTC.kMissed.rawValue, comment: "Label for missed call") :
NSLocalizedString("cancelled", comment: "Label for cancelled call")
case MsgServerData.WebRTC.kStarted.rawValue:
comment = NSLocalizedString("connecting", comment: "Label for initiated call")
case MsgServerData.WebRTC.kAccepted.rawValue:
comment = NSLocalizedString("in progress", comment: "Label for call in progress")
default:
comment = NSLocalizedString(MsgServerData.WebRTC.kDisconnected.rawValue, comment: "Label for disconnected call")
}
Expand Down

0 comments on commit 25fe12a

Please sign in to comment.