summaryrefslogtreecommitdiff
path: root/ext/bg
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2017-10-19 18:15:50 +0300
committersiikamiika <siikamiika@users.noreply.github.com>2017-10-19 18:15:50 +0300
commit04def645214b4c0ae2833f5ea7d9c3274192aa09 (patch)
tree79495066f4caa8da4db53da37a5e72892a68c4a7 /ext/bg
parent9d4b75de20d4a734d3f260498cb50b4e20ae8310 (diff)
merged mode: fix another OBOE related to sequence
Diffstat (limited to 'ext/bg')
-rw-r--r--ext/bg/js/translator.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/translator.js b/ext/bg/js/translator.js
index 70b01ce3..4394e172 100644
--- a/ext/bg/js/translator.js
+++ b/ext/bg/js/translator.js
@@ -67,7 +67,7 @@ class Translator {
const definitionsMerged = [];
const mergedByTermIndices = new Set();
for (const sequence in definitionsBySequence) {
- if (!(sequence > 0)) {
+ if (!(sequence >= 0)) {
continue;
}