mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
Updated PhoneNumber property name to SipPhoneNumber
This commit is contained in:
parent
0ede2e9973
commit
f564a2f554
1 changed files with 2 additions and 2 deletions
|
|
@ -195,9 +195,9 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
||||||
{
|
{
|
||||||
string roomNumberSipUri = "";
|
string roomNumberSipUri = "";
|
||||||
if (!string.IsNullOrEmpty(Codec.CodecInfo.SipUri)) // If both values are present, format the string with a pipe divider
|
if (!string.IsNullOrEmpty(Codec.CodecInfo.SipUri)) // If both values are present, format the string with a pipe divider
|
||||||
roomNumberSipUri = string.Format("{0} | {2}", GetFormattedPhoneNumber(Codec.CodecInfo.PhoneNumber), Codec.CodecInfo.SipUri);
|
roomNumberSipUri = string.Format("{0} | {2}", GetFormattedPhoneNumber(Codec.CodecInfo.SipPhoneNumber), Codec.CodecInfo.SipUri);
|
||||||
else // If only one value present, just show the phone number
|
else // If only one value present, just show the phone number
|
||||||
roomNumberSipUri = Codec.CodecInfo.PhoneNumber;
|
roomNumberSipUri = Codec.CodecInfo.SipPhoneNumber;
|
||||||
|
|
||||||
TriList.SetString(UIStringJoin.RoomPhoneText, roomNumberSipUri);
|
TriList.SetString(UIStringJoin.RoomPhoneText, roomNumberSipUri);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue