Skip to content

Commit

Permalink
Merge pull request #3551 from antobinary/fix-recording-status-handling
Browse files Browse the repository at this point in the history
html5client: fix handling of recording message
  • Loading branch information
antobinary committed Jan 9, 2017
2 parents 47c2fef + f517939 commit aa5d9b9
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -3,9 +3,9 @@ import Logger from '/imports/startup/server/logger';
import Meetings from '/imports/api/meetings';

export default function handleRecordingStatusChange({ payload }) {
const meetingId = arg.payload.meeting_id;
const intendedForRecording = arg.payload.recorded;
const currentlyBeingRecorded = arg.payload.recording;
const meetingId = payload.meeting_id;
const intendedForRecording = payload.recorded;
const currentlyBeingRecorded = payload.recording;

check(meetingId, String);
check(intendedForRecording, Boolean);
Expand Down

0 comments on commit aa5d9b9

Please sign in to comment.