This commit is contained in:
Girish Ramakrishnan
2014-10-21 16:48:58 -07:00
parent c513933705
commit 84965de92c
+1 -1
View File
@@ -59,7 +59,7 @@ function del(authCode, callback) {
function clear(callback) {
assert(typeof callback === 'function');
database.run('DELETE FROM authocodes', function (error) {
database.run('DELETE FROM authcodes', function (error) {
if (error) return callback(new DatabaseError(DatabaseError.INTERNAL_ERROR, error));
callback(null);