From 8ba28e2046b18f673337b3d95e624e273ebc85be Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 18 Sep 2014 12:41:59 -0400 Subject: [PATCH] passing uid in through the user deletion filter --- library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.js b/library.js index 775ea6c..e739356 100644 --- a/library.js +++ b/library.js @@ -232,7 +232,7 @@ winston.error('[sso-oauth] Could not remove OAuthId data for uid ' + uid + '. Error: ' + err); return callback(err); } - callback(); + callback(null, uid); }); };