feat: Add initial Electron app structure with real-time chat, user authentication, and encrypted messaging.
This commit is contained in:
@@ -50,7 +50,7 @@ router.post('/login/verify', async (req, res) => {
|
||||
|
||||
try {
|
||||
const result = await db.query(
|
||||
'SELECT hashed_auth_key, encrypted_master_key, encrypted_private_keys FROM users WHERE username = $1',
|
||||
'SELECT id, hashed_auth_key, encrypted_master_key, encrypted_private_keys FROM users WHERE username = $1',
|
||||
[username]
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user