From 9bf1fe3b7df55d19ec3b6e59a73eac727ab5bde0 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sun, 14 Feb 2016 17:42:52 +0100 Subject: [PATCH] Show naked_domain for healthtask summary --- src/apphealthmonitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apphealthmonitor.js b/src/apphealthmonitor.js index c7e235bb3..8abb46290 100644 --- a/src/apphealthmonitor.js +++ b/src/apphealthmonitor.js @@ -116,7 +116,7 @@ function processApps(callback) { var alive = apps .filter(function (a) { return a.installationState === appdb.ISTATE_INSTALLED && a.runState === appdb.RSTATE_RUNNING && a.health === appdb.HEALTH_HEALTHY; }) - .map(function (a) { return a.location; }).join(', '); + .map(function (a) { return a.location || 'naked_domain'; }).join(', '); debug('apps alive: [%s]', alive);