mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-29 10:06:13 +01:00
Fix space-infix-ops linter rule
This commit is contained in:
@@ -119,7 +119,7 @@ SocketUser.reset.commit = function(socket, data, callback) {
|
||||
|
||||
var uid = results.uid;
|
||||
var now = new Date();
|
||||
var parsedDate = now.getFullYear() + '/' + (now.getMonth()+1) + '/' + now.getDate();
|
||||
var parsedDate = now.getFullYear() + '/' + (now.getMonth() + 1) + '/' + now.getDate();
|
||||
|
||||
user.getUserField(uid, 'username', function(err, username) {
|
||||
if (err) {
|
||||
|
||||
Reference in New Issue
Block a user