From ee56ff02e11365e6b602a561f3587e1451d2a50c Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 2 Mar 2017 18:38:05 -0700 Subject: [PATCH] Don't crash if no user info (update) --- mods/last_callers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/last_callers.js b/mods/last_callers.js index 72f97317..3e37a22b 100644 --- a/mods/last_callers.js +++ b/mods/last_callers.js @@ -113,7 +113,7 @@ exports.getModule = class LastCallersModule extends MenuModule { item.affiliation = item.affils = props.affiliation; } else { item.location = 'N/A'; - item.affiliation = 'N/A'; + item.affiliation = item.affils = 'N/A'; } return next(); });