From f93c9042da55ab8cf6a833ba6f8b69863b21e103 Mon Sep 17 00:00:00 2001 From: nightfox <> Date: Wed, 9 May 2018 05:09:05 +0000 Subject: [PATCH] Minor fix --- xtrn/DDMsgReader/DDMsgReader.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xtrn/DDMsgReader/DDMsgReader.js b/xtrn/DDMsgReader/DDMsgReader.js index cff3737f18..9c86534694 100644 --- a/xtrn/DDMsgReader/DDMsgReader.js +++ b/xtrn/DDMsgReader/DDMsgReader.js @@ -8561,8 +8561,7 @@ function DigDistMsgReader_ParseMsgAtCodes(pTextLine, pMsgHdr, pDisplayMsgNum, pD // If the user is not the sysop and the message was posted anonymously, // then replace the from name @-codes with "Anonymous". Otherwise, // replace the from name @-codes with the actual from name. - //if (!gIsSysop && ((pMsgHdr.attr & MSG_ANONYMOUS) == MSG_ANONYMOUS)) - if (true && ((pMsgHdr.attr & MSG_ANONYMOUS) == MSG_ANONYMOUS)) + if (!gIsSysop && ((pMsgHdr.attr & MSG_ANONYMOUS) == MSG_ANONYMOUS)) { newTxtLine = newTxtLine.replace(/@MSG_FROM@/gi, "Anonymous") .replace(/@MSG_FROM_AND_FROM_NET@/gi, "Anonymous") -- GitLab