mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-05-06 21:33:09 +00:00
Fixed firstName / lastName mixup
This commit is contained in:
parent
3c0640ce11
commit
1445760cc0
2 changed files with 3 additions and 2 deletions
|
|
@ -67,6 +67,7 @@ class EndedCallFragment : GenericCallFragment() {
|
|||
Log.i("$TAG Showing ended call fragment")
|
||||
|
||||
callViewModel.callDuration.observe(viewLifecycleOwner) { duration ->
|
||||
// TODO FIXME: doesn't work
|
||||
binding.chronometer.base = SystemClock.elapsedRealtime() - (1000 * duration)
|
||||
// Do not start it!
|
||||
}
|
||||
|
|
|
|||
|
|
@ -143,8 +143,8 @@ class ContactNewOrEditViewModel @UiThread constructor() : ViewModel() {
|
|||
|
||||
val vCard = friend.vcard
|
||||
if (vCard != null) {
|
||||
vCard.familyName = fn
|
||||
vCard.givenName = ln
|
||||
vCard.givenName = fn
|
||||
vCard.familyName = ln
|
||||
|
||||
val picture = picturePath.value.orEmpty()
|
||||
if (picture.isNotEmpty()) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue