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 5753e16e..0cac68f8 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -240,8 +240,11 @@ class Backend { this.onOptionsUpdated(source); } - _onApiKanjiFind({text, optionsContext}) { - return apiKanjiFind(text, optionsContext); + async _onApiKanjiFind({text, optionsContext}) { + const options = await this.getOptions(optionsContext); + const definitions = await this.translator.findKanji(text, options); + definitions.splice(options.general.maxResults); + return definitions; } _onApiTermsFind({text, details, optionsContext}) { |