Fix voicemail uri display in history
This commit is contained in:
parent
f62d0aac70
commit
e66022b1dc
1 changed files with 3 additions and 1 deletions
|
@ -154,8 +154,10 @@ public class Digit extends Button implements AddressAware {
|
|||
|
||||
if(id == R.id.Digit1 && lc.getCalls().length == 0){
|
||||
String voiceMail = LinphonePreferences.instance().getVoiceMailUri();
|
||||
mAddress.getEditableText().clear();
|
||||
mAddress.getEditableText().append(voiceMail);
|
||||
if(voiceMail != null){
|
||||
LinphoneManager.getInstance().newOutgoingCall(voiceMail,"");
|
||||
LinphoneManager.getInstance().newOutgoingCall(mAddress);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue