mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-19 23:06:33 +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();
|
username = username.Trim();
|
||||||
if (username.Length == 0) return;
|
if (username.Length == 0) return;
|
||||||
|
|
||||||
string password = UsernameEdit.Text ?? "";
|
string password = PasswordEdit.Text ?? "";
|
||||||
password = password.Trim();
|
password = password.Trim();
|
||||||
if (password.Length == 0) return;
|
if (password.Length == 0) return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user