Skip to content

Commit

Permalink
Duplicate emote parsing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
melalawi committed Dec 14, 2017
1 parent b8cb0a8 commit b7963b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/contentscript/js/pageObserver.js
Expand Up @@ -204,7 +204,7 @@ function isIllegalNode(node) {
isIllegal = true;
} else if (node.textContent.replace(/\s/g, '').length === 0) {
isIllegal = true;
} else if (node.isGTENode) {
} else if (node.hasOwnProperty('isGTENode') === true) {
isIllegal = true;
}
}
Expand Down

0 comments on commit b7963b2

Please sign in to comment.