From 4b999812f14577c3755a2e882fc11f5e3845c31e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20F=2E=20Romaniello?= Date: Sun, 30 Jun 2013 16:44:46 -0300 Subject: [PATCH] fix missing { --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index bd9122d..ad94a9b 100644 --- a/lib/index.js +++ b/lib/index.js @@ -55,7 +55,7 @@ function authorize(options) { var userKey = session[ auth.passport._key ][ auth.userProperty ]; - if(userKey === undefined) + if(userKey === undefined) { if(auth.fail) return auth.fail( data, accept ); else