Skip to content

Commit ab08448

Browse files
authored
Merge pull request #48 from jangxyz/patch-1
Fix typo
2 parents f28ff42 + 3b9e178 commit ab08448

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sqlHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ SqlStore.prototype.update = function(request, partialResource, finishedCallback)
615615
if (err) return finishTransaction(err);
616616

617617
theResource.update(partialResource, t).asCallback(function(err3) {
618-
if (err) return finishTransaction(err3);
618+
if (err3) return finishTransaction(err3);
619619
return finishTransaction(null, partialResource);
620620
});
621621
});

0 commit comments

Comments
 (0)