Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cbce30e

Browse files
committedMay 8, 2017
Fix for trailing spaces. Issue #2130.
1 parent f294112 commit cbce30e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎restcomm/restcomm.mscontrol.jsr309/src/main/java/org/restcomm/connect/mscontrol/jsr309/Jsr309CallController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ private void onRecord(Record message, ActorRef self, ActorRef sender) {
716716
params.put(Recorder.START_BEEP, Boolean.FALSE);
717717

718718
// Video parameters
719-
if (MediaAttributes.MediaType.AUDIO_VIDEO.equals(message.media()) ||
719+
if (MediaAttributes.MediaType.AUDIO_VIDEO.equals(message.media()) ||
720720
MediaAttributes.MediaType.VIDEO_ONLY.equals(message.media())) {
721721
params.put(Recorder.VIDEO_CODEC, CodecConstants.H264);
722722
String sVideoFMTP = "profile=" + "66";

0 commit comments

Comments
 (0)
Please sign in to comment.