Skip to content
Snippets Groups Projects
Commit 957e5e3d authored by KDSBrowne's avatar KDSBrowne
Browse files

fix captions from dictation not working

parent 117d172b
No related branches found
No related tags found
No related merge requests found
......@@ -8,9 +8,7 @@ import {
appendTextURL,
} from '/imports/api/note/server/helpers';
export default function appendText(body, text, locale) {
const { meetingId } = body;
export default function appendText(text, locale, meetingId) {
check(meetingId, String);
check(text, String);
check(locale, String);
......
......@@ -75,7 +75,7 @@ const formatEntry = (entry) => {
};
const appendText = (text, locale) => {
makeCall('appendText', formatEntry(text), locale);
makeCall('appendText', formatEntry(text), locale, Auth.meetingID);
};
const canIOwnThisPad = (ownerId) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment