aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/frontend.js
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2019-08-14 22:54:42 +0300
committersiikamiika <siikamiika@users.noreply.github.com>2019-08-14 22:54:42 +0300
commit658e5ddff13f4ec392dc110004635e22d468525a (patch)
tree731d79146922885e951fbec57a05d6393bcf13f1 /ext/fg/js/frontend.js
parente23d4b9a82581f3cf1118e31d077fc9cdaff7573 (diff)
ignore zero-width non-joiner
fixes #179
Diffstat (limited to 'ext/fg/js/frontend.js')
-rw-r--r--ext/fg/js/frontend.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js
index bd652f3b..afb182d4 100644
--- a/ext/fg/js/frontend.js
+++ b/ext/fg/js/frontend.js
@@ -311,10 +311,18 @@ class Frontend {
async searchTerms(textSource) {
textSource.setEndOffset(this.options.scanning.length);
- const {definitions, length} = await apiTermsFind(textSource.text());
+ const {text, strippedIndices} = textSource.text();
+ let {definitions, length} = await apiTermsFind(text);
if (definitions.length === 0) {
return false;
}
+ for (let index of strippedIndices) {
+ if (index < length) {
+ length++;
+ } else {
+ break;
+ }
+ }
textSource.setEndOffset(length);
@@ -338,7 +346,8 @@ class Frontend {
async searchKanji(textSource) {
textSource.setEndOffset(1);
- const definitions = await apiKanjiFind(textSource.text());
+ const {text} = textSource.text();
+ const definitions = await apiKanjiFind(text);
if (definitions.length === 0) {
return false;
}