originName -> originLine

This commit is contained in:
Bryan Ashby 2016-03-28 19:58:07 -06:00
parent 434fcdb652
commit b5a4fadb92
1 changed files with 2 additions and 2 deletions

View File

@ -220,8 +220,8 @@ function getQuotePrefix(name) {
// http://ftsc.org/docs/fts-0004.001
//
function getOrigin(address) {
const origin = _.has(Config.messageNetworks.originName) ?
Config.messageNetworks.originName :
const origin = _.has(Config, 'messageNetworks.originLine') ?
Config.messageNetworks.originLine :
Config.general.boardName;
const addrStr = new Address(address).toString('5D');