mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
Adds E164 and H323 fixes from release branch
This commit is contained in:
parent
0b485d8d96
commit
23bfecd870
1 changed files with 10 additions and 2 deletions
|
|
@ -1685,20 +1685,28 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (CodecConfiguration.Configuration.H323.H323Alias.E164 != null)
|
if (CodecConfiguration.Configuration.H323 != null && CodecConfiguration.Configuration.H323.H323Alias.E164 != null)
|
||||||
|
{
|
||||||
return CodecConfiguration.Configuration.H323.H323Alias.E164.Value;
|
return CodecConfiguration.Configuration.H323.H323Alias.E164.Value;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public override string H323Id
|
public override string H323Id
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (CodecConfiguration.Configuration.H323.H323Alias.ID != null)
|
if (CodecConfiguration.Configuration.H323 != null && CodecConfiguration.Configuration.H323.H323Alias.E164 != null)
|
||||||
|
{
|
||||||
return CodecConfiguration.Configuration.H323.H323Alias.ID.Value;
|
return CodecConfiguration.Configuration.H323.H323Alias.ID.Value;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public override string SipPhoneNumber
|
public override string SipPhoneNumber
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue