diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2019-11-04 01:25:32 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2019-11-23 17:45:44 +0200 |
commit | 1bf48d24ef4a0a1ed09d8ec6acc74ff5f78dd6c2 (patch) | |
tree | d6a22dbebecf0d62e008f831167c5ed890ea1fde /ext/bg/js/mecab.js | |
parent | 515345ba0a9844ff55518779f799e4cf2a003d62 (diff) |
change mecab path
https://github.com/siikamiika/yomichan-mecab-installer
Diffstat (limited to 'ext/bg/js/mecab.js')
-rw-r--r-- | ext/bg/js/mecab.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/mecab.js b/ext/bg/js/mecab.js index d28d80c0..14f68393 100644 --- a/ext/bg/js/mecab.js +++ b/ext/bg/js/mecab.js @@ -29,7 +29,7 @@ class Mecab { } startListener() { - this.port = chrome.runtime.connectNative('mecab'); + this.port = chrome.runtime.connectNative('yomichan_mecab'); this.port.onMessage.addListener((message) => { const {sequence, data} = message; const {callback, timer} = this.listeners[sequence] || {}; |