Merge pull request #6760 from BobakOftadeh/fix-remove-presentations

Fix remove presentation feature
This commit is contained in:
Anton Georgiev 2019-02-11 18:19:02 -05:00 committed by GitHub
commit e7383f78ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ export default function handlePresentationRemove({ body }, meetingId) {
const { podId, presentationId } = body; const { podId, presentationId } = body;
check(meetingId, String); check(meetingId, String);
check(podId); check(podId, String);
check(presentationId, String); check(presentationId, String);
return removePresentation(meetingId, podId, presentationId); return removePresentation(meetingId, podId, presentationId);