Skip to content

Commit

Permalink
#308 don't save 'password' (input element), save 'passwords' values
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 3, 2024
1 parent 0bed220 commit 88868e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,9 @@ <h2>Xpra Bug Report</h2>
props["debug_"+category] = true;
}
if (insecure || Utilities.hasSessionStorage()) {
props["password"] = password;
for (let i = 0; i < passwords.length; i++) {
add_prop("password"+i, passwords[i]);
}
}
else {
props["password"] = "";
Expand Down

0 comments on commit 88868e0

Please sign in to comment.