* Fix String vs Address when creating (NetMail) packets causing orig address info to not be recorded correctly

This commit is contained in:
Bryan Ashby 2018-01-05 22:02:36 -07:00
parent b97f96ce18
commit f967ce1ce6
3 changed files with 41 additions and 26 deletions

View file

@ -189,7 +189,7 @@ function getQuotePrefix(name) {
//
function getOrigin(address) {
const origin = _.has(Config, 'messageNetworks.originLine') ?
Config.messageNetworks.originLine :
Config.messageNetworks.originLine :
Config.general.boardName;
const addrStr = new Address(address).toString('5D');