diff options
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 0cac68f8..4c3b3dfa 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -247,8 +247,11 @@ class Backend { return definitions; } - _onApiTermsFind({text, details, optionsContext}) { - return apiTermsFind(text, details, optionsContext); + async _onApiTermsFind({text, details, optionsContext}) { + const options = await this.getOptions(optionsContext); + const [definitions, length] = await this.translator.findTerms(text, details, options); + definitions.splice(options.general.maxResults); + return {length, definitions}; } _onApiTextParse({text, optionsContext}) { |