DDMsgReader: Fix for #499 (error when replying to emails from 'All' or unknown sender)
1 unresolved thread
1 unresolved thread
Compare changes
+ 113
− 22
@@ -80,6 +80,11 @@
@@ -184,8 +189,8 @@ var ansiterm = require("ansiterm_lib.js", 'expand_ctrl_a');
@@ -404,7 +409,7 @@ if (typeof(MSG_MIMEATTACH) != "undefined")
@@ -10026,16 +10031,15 @@ function DigDistMsgReader_DoPrivateReply(pMsgHdr, pMsgIdx, pReplyMode)
@@ -10065,9 +10069,11 @@ function DigDistMsgReader_DoPrivateReply(pMsgHdr, pMsgIdx, pReplyMode)
@@ -10083,15 +10089,82 @@ function DigDistMsgReader_DoPrivateReply(pMsgHdr, pMsgIdx, pReplyMode)
@@ -14337,7 +14410,7 @@ function DigDistMsgReader_ForwardMessage(pMsgHdr, pMsgBody)
@@ -18656,11 +18729,29 @@ function findUserNumWithName(pName)
You're never likely to see an email message from "All" (how would that happen?) - so this is a weird thing to be checking for.
It seems DDMsgReader sets the "From" name to "All" if it's blank. I may have to go back and review this more.