diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2017-10-19 18:15:50 +0300 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2017-10-19 18:15:50 +0300 |
commit | 04def645214b4c0ae2833f5ea7d9c3274192aa09 (patch) | |
tree | 79495066f4caa8da4db53da37a5e72892a68c4a7 /ext/bg/js | |
parent | 9d4b75de20d4a734d3f260498cb50b4e20ae8310 (diff) |
merged mode: fix another OBOE related to sequence
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/translator.js | 2 |
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; } |