diff --git a/src/viewer/scripts/discord.js b/src/viewer/scripts/discord.js
index f7e6424..f98e3a3 100644
--- a/src/viewer/scripts/discord.js
+++ b/src/viewer/scripts/discord.js
@@ -121,6 +121,9 @@ var DISCORD = (function(){
if (property === "avatar"){
return value ? templateUserAvatar.apply(value) : "";
}
+ else if (property === "user.tag"){
+ return value ? value : "????";
+ }
else if (property === "timestamp"){
return getHumanReadableTime(value);
}
@@ -151,7 +154,7 @@ var DISCORD = (function(){
processed = processed
.replace(REGEX.formatUrl, "$1")
.replace(REGEX.mentionChannel, (full, match) => "#"+STATE.getChannelName(match)+"")
- .replace(REGEX.mentionUser, (full, match) => "@"+STATE.getUserName(match)+"")
+ .replace(REGEX.mentionUser, (full, match) => "@"+STATE.getUserName(match)+"")
.replace(REGEX.customEmojiStatic, "
")
.replace(REGEX.customEmojiAnimated, "
");