aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2019-11-04 01:25:32 +0200
committersiikamiika <siikamiika@users.noreply.github.com>2019-11-23 17:45:44 +0200
commit1bf48d24ef4a0a1ed09d8ec6acc74ff5f78dd6c2 (patch)
treed6a22dbebecf0d62e008f831167c5ed890ea1fde
parent515345ba0a9844ff55518779f799e4cf2a003d62 (diff)
change mecab path
https://github.com/siikamiika/yomichan-mecab-installer
-rw-r--r--ext/bg/js/mecab.js2
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] || {};