From d4bc192be27cf7ae34ad7d7877aa0089cd69a40c Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Wed, 17 Oct 2018 10:43:06 -0700 Subject: [PATCH] Fix for Case 19395 High Fidelity Console in client only install downloads default content assets for non-existent sandbox. --- server-console/src/main.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server-console/src/main.js b/server-console/src/main.js index c26938745b..0bc9f1f3ed 100644 --- a/server-console/src/main.js +++ b/server-console/src/main.js @@ -919,6 +919,8 @@ app.on('ready', function() { trayNotifications.startPolling(); } updateTrayMenu(ProcessGroupStates.STOPPED); - - maybeInstallDefaultContentSet(onContentLoaded); + + if (isServerInstalled()) { + maybeInstallDefaultContentSet(onContentLoaded); + } });