Removes unnecessary null check in SendDtmf method

This commit is contained in:
Neil Dorin
2020-11-10 09:29:37 -07:00
parent 5d44b5f3ef
commit 1cb9fb6058

View File

@@ -1339,10 +1339,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
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)