mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
fix(essentials): Disables dial feedback phone formatting if codec is IHasStartMeeting
This commit is contained in:
parent
532f3ba237
commit
0a1af09830
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
|||
// Return formatted when dialing, straight digits when in call
|
||||
DialStringFeedback = new StringFeedback(() =>
|
||||
{
|
||||
if (KeypadMode == eKeypadMode.Dial)
|
||||
if (KeypadMode == eKeypadMode.Dial && !(Codec is IHasStartMeeting))
|
||||
return GetFormattedDialString(DialStringBuilder.ToString());
|
||||
else
|
||||
return DialStringBuilder.ToString();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue