Reject blank emote names and images

This commit is contained in:
calzoneman 2015-12-05 18:52:39 -08:00
parent 889fb6595f
commit 11d4c4ca62
2 changed files with 20 additions and 2 deletions

View file

@ -2561,8 +2561,12 @@ function formatUserPlaylistList() {
function loadEmotes(data) {
CHANNEL.emotes = [];
data.forEach(function (e) {
e.regex = new RegExp(e.source, "gi");
CHANNEL.emotes.push(e);
if (e.image && e.name) {
e.regex = new RegExp(e.source, "gi");
CHANNEL.emotes.push(e);
} else {
console.error("Rejecting invalid emote: " + JSON.stringify(e));
}
});
}