Skip to content

Commit

Permalink
Merge pull request #121 from FND/patch-1
Browse files Browse the repository at this point in the history
fixed syntax error
  • Loading branch information
mikedeboer committed Apr 19, 2015
2 parents 001775c + 54fe501 commit 6657002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DAV/plugins/auth/postgres.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var jsDAV_Auth_Backend_Postgre = module.exports = jsDAV_Auth_Backend_AbstractDig
"SELECT * FROM " + this.tableName + " WHERE username=$1",
[username],
function(err, result) {
if (err) {
if (err)
return cbdigest(err);

if (result.rows.length > 0)
Expand Down

0 comments on commit 6657002

Please sign in to comment.