From 6238dbc784a7eb93be474f69a6398bf54d7ce9b5 Mon Sep 17 00:00:00 2001 From: kirrg001 Date: Sat, 7 May 2016 16:19:38 +0200 Subject: [PATCH] fix brace mistake in 005/01-update-ghost-client-secrets.js --- .../migration/fixtures/005/01-update-ghost-client-secrets.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/server/data/migration/fixtures/005/01-update-ghost-client-secrets.js b/core/server/data/migration/fixtures/005/01-update-ghost-client-secrets.js index abc2dffbfa..760c4ec418 100644 --- a/core/server/data/migration/fixtures/005/01-update-ghost-client-secrets.js +++ b/core/server/data/migration/fixtures/005/01-update-ghost-client-secrets.js @@ -18,8 +18,8 @@ module.exports = function updateGhostClientsSecrets(options, logger) { client.secret = crypto.randomBytes(6).toString('hex'); return models.Client.edit( - _.extend({}, client, {secret: crypto.randomBytes(6).toString('hex')}, - _.extend({}, options, {id: client.id})) + _.extend({}, client, {secret: crypto.randomBytes(6).toString('hex')}), + _.extend({}, options, {id: client.id}) ); }); });