From a424fd52d1fbefbccb339a9c672239deeac2b156 Mon Sep 17 00:00:00 2001 From: mbilker Date: Thu, 21 Jan 2016 00:16:04 -0500 Subject: [PATCH] fix(nylas-api): namespace the custom sync engine to `syncEngine` --- src/flux/nylas-api.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flux/nylas-api.coffee b/src/flux/nylas-api.coffee index 777ab0d1c..12ebff485 100644 --- a/src/flux/nylas-api.coffee +++ b/src/flux/nylas-api.coffee @@ -152,8 +152,8 @@ class NylasAPI @AppID = 'n/a' @APIRoot = 'http://localhost:5555' else if env in ['custom'] - @AppID = NylasEnv.config.get('env.AppID') or 'n/a' - @APIRoot = NylasEnv.config.get('env.APIRoot') or 'http://localhost:5555' + @AppID = NylasEnv.config.get('syncEngine.AppID') or 'n/a' + @APIRoot = NylasEnv.config.get('syncEngine.APIRoot') or 'http://localhost:5555' current = {@AppID, @APIRoot, @APITokens}