diff options
Diffstat (limited to 'ext/bg/js/deinflector.js')
-rw-r--r-- | ext/bg/js/deinflector.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/js/deinflector.js b/ext/bg/js/deinflector.js index 3c24ae3a..ec43f037 100644 --- a/ext/bg/js/deinflector.js +++ b/ext/bg/js/deinflector.js @@ -52,6 +52,10 @@ class Deinflection { for (const v of variants) { let allowed = this.tags.length === 0; for (const tag of this.tags) { + // + // TODO: Handle addons through tags.json or rules.json + // + if (v.tagsIn.indexOf(tag) !== -1) { allowed = true; break; |