mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-02 17:29:17 +02:00
now it is CallState.Canceled
not CallState.Cancelled
This commit is contained in:
parent
33f38889c1
commit
b1e6d59ba9
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class CallItemView extends FrameLayout {
|
|||
|
||||
if (callInfo.state instanceof CallState.Missed) {
|
||||
title.setText(R.string.missed_call);
|
||||
} else if (callInfo.state instanceof CallState.Cancelled) {
|
||||
} else if (callInfo.state instanceof CallState.Canceled) {
|
||||
title.setText(R.string.canceled_call);
|
||||
} else if (callInfo.state instanceof CallState.Declined) {
|
||||
title.setText(R.string.declined_call);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue