From dcf2691a12027def2ba26a80c502c46bb1674fa8 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Tue, 21 Oct 2014 14:42:18 -0400 Subject: [PATCH] fix indent --- src/user/profile.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/user/profile.js b/src/user/profile.js index eca163ab73..19b5441e0a 100644 --- a/src/user/profile.js +++ b/src/user/profile.js @@ -10,7 +10,7 @@ var async = require('async'), events = require('../events'), db = require('../database'), Password = require('../password'), - plugins = require('./../plugins'); + plugins = require('../plugins'); module.exports = function(User) { @@ -123,8 +123,8 @@ module.exports = function(User) { User.setUserField(uid, field, data[field], next); } - }); - }; + }); + }; function updateEmail(uid, newEmail, callback) { User.getUserFields(uid, ['email', 'picture', 'uploadedpicture'], function(err, userData) { @@ -280,5 +280,4 @@ module.exports = function(User) { }); } }; - };