diff --git a/js/main.js b/js/main.js
index 532547ee..1c642830 100644
--- a/js/main.js
+++ b/js/main.js
@@ -198,13 +198,13 @@ EmoteModule.prototype.injectEmote = function(node) {
words.some(function(word) {
if (emotesTwitch.hasOwnProperty(word)) {
- parentInnerHTML = parentInnerHTML.replace(word, "<\/img>");
+ parentInnerHTML = parentInnerHTML.replace(word, "<\/img>");
} else if(typeof emotesFfz !== 'undefined' && settingsCookie["bda-es-1"]) {
if(emotesFfz.hasOwnProperty(word)) {
- parentInnerHTML = parentInnerHTML.replace(word, "<\/img>");
+ parentInnerHTML = parentInnerHTML.replace(word, "<\/img>");
} else if(typeof emotesBTTV !== 'undefined' && settingsCookie["bda-es-2"]) {
if(emotesBTTV.hasOwnProperty(word)) {
- parentInnerHTML = parentInnerHTML.replace(word, "<\/img>");
+ parentInnerHTML = parentInnerHTML.replace(word, "<\/img>");
}
}
}