From eb2929f4978f0c7bfe496eda5f3cece1c9c24642 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 26 May 2014 21:37:50 -0400 Subject: [PATCH] removing slufigication when checking for group existence --- src/groups.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/groups.js b/src/groups.js index b16f386984..1c528a6855 100644 --- a/src/groups.js +++ b/src/groups.js @@ -172,7 +172,6 @@ }; Groups.exists = function(name, callback) { - name = utils.slugify(name); db.isSetMember('groups', name, callback); };