Fix missing details

This commit is contained in:
toasted-nutbread 2019-11-18 21:55:06 -05:00
parent b1659522b3
commit baf0325f62

View File

@ -655,7 +655,7 @@ const ankiTemplatesValidateGetDefinition = (() => {
return async (text, optionsContext) => {
if (cachedText !== text) {
const {definitions} = await apiTermsFind(text, optionsContext);
const {definitions} = await apiTermsFind(text, {}, optionsContext);
if (definitions.length === 0) { return null; }
cachedValue = definitions[0];