mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-04-25 00:46:28 +03:00
fix username being copied instead of password
This commit is contained in:
@@ -25,7 +25,7 @@ public partial class EntryEditWindow: Window
|
||||
username = username.Trim();
|
||||
if (username.Length == 0) return;
|
||||
|
||||
string password = UsernameEdit.Text ?? "";
|
||||
string password = PasswordEdit.Text ?? "";
|
||||
password = password.Trim();
|
||||
if (password.Length == 0) return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user