diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-12-17 19:30:26 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-12-17 19:30:26 -0800 |
commit | 5c755043fa2fb23f94f898fc57828277d7b02049 (patch) | |
tree | cb589e3f0c0200005977d1ef18e7a6b3c2d9b25a /ext/bg/js/util.js | |
parent | 15e1cf3358e357968d6c48465fcd15a877bc433a (diff) |
CWIP
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r-- | ext/bg/js/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index a28692dc..dc606a73 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -97,7 +97,7 @@ function sortTermDefs(definitions) { } function applyTagMeta(tag, meta) { - const symbol = tag.tag.split(':')[0]; + const symbol = tag.name.split(':')[0]; for (const prop in meta[symbol] || {}) { tag[prop] = meta[symbol][prop]; } |