diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-12-17 19:08:28 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-12-17 19:08:28 -0800 |
commit | 15e1cf3358e357968d6c48465fcd15a877bc433a (patch) | |
tree | 1ceef406d429f40e6e016d75267ba33818db0d29 /ext/bg/js/util.js | |
parent | d98f4566bc856e04f2f6a7d9a7bf49e30867551e (diff) |
Fixes
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 dc606a73..a28692dc 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.name.split(':')[0]; + const symbol = tag.tag.split(':')[0]; for (const prop in meta[symbol] || {}) { tag[prop] = meta[symbol][prop]; } |