mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Removes unnecessary null check in SendDtmf method
This commit is contained in:
parent
5d44b5f3ef
commit
1cb9fb6058
1 changed files with 2 additions and 4 deletions
|
|
@ -1338,11 +1338,9 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void SendDtmf(string s)
|
public override void SendDtmf(string s)
|
||||||
{
|
|
||||||
if (CallFavorites != null)
|
|
||||||
{
|
{
|
||||||
SendText(string.Format("xCommand Call DTMFSend CallId: {0} DTMFString: \"{1}\"", GetCallId(), s));
|
SendText(string.Format("xCommand Call DTMFSend CallId: {0} DTMFString: \"{1}\"", GetCallId(), s));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SelectPresentationSource(int source)
|
public void SelectPresentationSource(int source)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue