fix onMessage

This commit is contained in:
Zack Rauen 2017-10-30 02:29:47 -04:00
parent 430989072e
commit 3ec3b47be4
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.addedNodes.length && mutation.addedNodes[0] instanceof Element && (mutation.addedNodes[0].classList.contains("message"))) {
if (mutation.addedNodes.length && mutation.addedNodes[0] instanceof Element && mutation.addedNodes[0].classList.contains("message") && !mutation.addedNodes[0].classList.contains("message-sending")) {
console.log("onMessage");
if (typeof pluginModule !== "undefined") pluginModule.newMessage();
}