Skip to content

Commit

Permalink
- extracted the wrong boolean from the message which broke recording
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Oct 29, 2014
1 parent ca07244 commit 06d47f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private static IMessage processCreateMeeting(JsonObject payload) {
String voiceBridge = payload.get(Constants.VOICE_CONF).getAsString();
Long duration = payload.get(Constants.DURATION).getAsLong();
Boolean autoStartRecording = payload.get(Constants.AUTO_START_RECORDING).getAsBoolean();
Boolean allowStartStopRecording = payload.get(Constants.AUTO_START_RECORDING).getAsBoolean();
Boolean allowStartStopRecording = payload.get(Constants.ALLOW_START_STOP_RECORDING).getAsBoolean();

return new CreateMeetingMessage(id, name, record, voiceBridge,
duration, autoStartRecording, allowStartStopRecording);
Expand Down

0 comments on commit 06d47f6

Please sign in to comment.