This commit is contained in:
Barış Soner Uşaklı
2016-01-10 20:51:16 +02:00
parent fddc6157a3
commit 24114539d5
2 changed files with 2 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ require('./user/picture')(SocketUser);
SocketUser.exists = function(socket, data, callback) {
if (data && data.username) {
meta.userOrGroupExists(utils.slugify(data.username), callback);
meta.userOrGroupExists(data.username, callback);
}
};