From 388fa5322dc32fe86e88d8bf50cc6c9ad16d6426 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 28 May 2024 22:13:16 +0700 Subject: [PATCH] #308 don't save 'password' (input element), save 'passwords' values --- html5/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/html5/index.html b/html5/index.html index 50747606..d28e05d4 100644 --- a/html5/index.html +++ b/html5/index.html @@ -1094,7 +1094,9 @@

Xpra Bug Report

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"] = ""; }