mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 20:13:07 +00:00
Merge pull request #4341 from Nachtalb/na/fix-proxy-password
* Fix authenticated proxy * Save the proxy password so you don't have to reenter it after restart
This commit is contained in:
commit
5d7e62ed67
3 changed files with 3 additions and 1 deletions
|
@ -166,7 +166,7 @@
|
|||
class="input"
|
||||
:type="slotProps.isVisible ? 'text' : 'password'"
|
||||
placeholder="Proxy password"
|
||||
name="password"
|
||||
name="proxyPassword"
|
||||
maxlength="300"
|
||||
/>
|
||||
</RevealPassword>
|
||||
|
|
|
@ -538,6 +538,7 @@ Network.prototype.export = function () {
|
|||
"proxyPort",
|
||||
"proxyUsername",
|
||||
"proxyEnabled",
|
||||
"proxyPassword",
|
||||
]);
|
||||
|
||||
network.channels = this.channels
|
||||
|
|
|
@ -49,6 +49,7 @@ describe("Network", function () {
|
|||
proxyEnabled: false,
|
||||
proxyHost: "",
|
||||
proxyPort: 1080,
|
||||
proxyPassword: "",
|
||||
proxyUsername: "",
|
||||
channels: [
|
||||
{name: "#thelounge", key: ""},
|
||||
|
|
Loading…
Reference in a new issue