From 320a8037cc01a8e543f03ac0dd732a9f803820c3 Mon Sep 17 00:00:00 2001 From: Damian Mee Date: Fri, 7 Nov 2014 01:59:08 +0100 Subject: [PATCH] fix(copypasta): syntax error fixed --- lib/plugins.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/plugins.js b/lib/plugins.js index 34ae1557..6f1a5759 100644 --- a/lib/plugins.js +++ b/lib/plugins.js @@ -160,10 +160,6 @@ exports.configure = function configure(config) { if (newTrader === null) stopTrader(); else startTrader(); } - - // NOTE: temp solution - if (temporaryName === null) - temporaryName = require('./temporary_name'); ); // ID VERIFIER [optional] configure (or load) @@ -171,6 +167,10 @@ exports.configure = function configure(config) { idVerifierPlugin, 'idVerifier' ); + + // NOTE: temp solution + if (temporaryName === null) + temporaryName = require('./temporary_name'); }; exports.getCachedConfig = function getCachedConfig() { return cachedConfig;