diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2019-11-08 00:49:20 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2019-11-23 17:45:44 +0200 |
commit | c1d24208d383e687f443c4e7dfc7bfda81d191bd (patch) | |
tree | 4be76fa658df160e1eca35832a81bb547e071b59 /ext/bg/js/backend.js | |
parent | 955e131f9673e006556bc2c5e0b3551a614ccc48 (diff) |
start mecab only after enabling the setting
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index e97f32b5..027cc250 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -98,6 +98,10 @@ class Backend { } this.anki = options.anki.enable ? new AnkiConnect(options.anki.server) : new AnkiNull(); + + if (options.parsing.enableMecabParser) { + this.mecab.startListener(); + } } async getFullOptions() { |