further test plugin api

This commit is contained in:
Zack Rauen 2017-10-30 02:14:25 -04:00
parent 1eed4bbb6c
commit 430989072e
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ Core.prototype.initObserver = function () {
voiceMode.obsCallback();
if (typeof pluginModule !== "undefined") pluginModule.channelSwitch();
}
if (mutation.target.getAttribute('class').indexOf('message') != -1) {
if (mutation.addedNodes.length && mutation.addedNodes[0] instanceof Element && (mutation.addedNodes[0].classList.contains("message"))) {
console.log("onMessage");
if (typeof pluginModule !== "undefined") pluginModule.newMessage();
}