Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/api/server/v1/autotranslate.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ API.v1.addRoute('autotranslate.saveSettings', { authRequired: true }, {
return API.v1.failure('The bodyParam "autoTranslate" must be a boolean.');
}
if (field === 'autoTranslateLanguage' && typeof value !== 'string') {
return API.v1.failure('The bodyParam "autoTranslate" must be a string.');
return API.v1.failure('The bodyParam "autoTranslateLanguage" must be a string.');
}

Meteor.runAsUser(this.userId, () => Meteor.call('autoTranslate.saveSettings', roomId, field, value === true ? '1' : String(value).valueOf(), { defaultLanguage }));
Expand Down