From dcc47b98ecc00eda0e419df20bbd5514bb8705f8 Mon Sep 17 00:00:00 2001 From: Jon Buckley Date: Thu, 13 Apr 2017 20:09:14 -0400 Subject: [PATCH] fix(patcher): Fix patcher with no pre-loaded clients --- lib/db/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/db/index.js b/lib/db/index.js index 22bec829b..e085333f6 100644 --- a/lib/db/index.js +++ b/lib/db/index.js @@ -105,6 +105,8 @@ function preClients() { } }); })); + } else { + return P.resolve(); } }