feat(essentials): Format update for command

This commit is contained in:
Neil Dorin
2022-05-18 16:33:21 -06:00
parent 1e65c961c6
commit b8442e7048

View File

@@ -3461,7 +3461,9 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
public void RecordingPromptAcknowledgement(bool agree)
{
SendText(string.Format("zCommand Agree Recording: {0}", agree ? "on" : "off"));
var command = string.Format("zCommand Agree Recording: {0}", agree ? "on" : "off");
//Debug.Console(2, this, "Sending agree: {0} {1}", agree, command);
SendText(command);
}
public void StartRecording()