mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
fix bugs, full two fa system done
This commit is contained in:
@@ -19,7 +19,9 @@ const db = require( '../db/db.js' );
|
||||
module.exports.checkpassword = function checkpassword ( username, password ) {
|
||||
return new Promise( resolve => {
|
||||
db.getData( 'user', username ).then( data => {
|
||||
resolve( bcrypt.compareSync( password, data ) );
|
||||
bcrypt.compare( password, data ).then( data => {
|
||||
resolve( data );
|
||||
} );
|
||||
} );
|
||||
} );
|
||||
};
|
||||
Reference in New Issue
Block a user