From 3678908477fa7fd1f1786c6096961aee6f668f0c Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 2 Mar 2017 18:35:17 -0700 Subject: [PATCH] Don't crash if no user info --- mods/last_callers.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mods/last_callers.js b/mods/last_callers.js index 1ff6dbd8..72f97317 100644 --- a/mods/last_callers.js +++ b/mods/last_callers.js @@ -105,13 +105,16 @@ exports.getModule = class LastCallersModule extends MenuModule { item.ts = moment(item.timestamp).format(dateTimeFormat); User.getUserName(item.userId, (err, userName) => { - item.userName = userName; + item.userName = userName || 'N/A'; User.loadProperties(item.userId, getPropOpts, (err, props) => { if(!err) { item.location = props.location; item.affiliation = item.affils = props.affiliation; - } + } else { + item.location = 'N/A'; + item.affiliation = 'N/A'; + } return next(); }); });