Merge pull request #3645 from thelounge/xpaw/default-port
Switch default ports when toggling TLS
This commit is contained in:
commit
ba3e0dae79
@ -45,6 +45,7 @@
|
|||||||
<span id="connect:portseparator">:</span>
|
<span id="connect:portseparator">:</span>
|
||||||
<input
|
<input
|
||||||
id="connect:port"
|
id="connect:port"
|
||||||
|
ref="serverPort"
|
||||||
class="input"
|
class="input"
|
||||||
type="number"
|
type="number"
|
||||||
min="1"
|
min="1"
|
||||||
@ -65,6 +66,7 @@
|
|||||||
name="tls"
|
name="tls"
|
||||||
:checked="defaults.tls ? true : false"
|
:checked="defaults.tls ? true : false"
|
||||||
:disabled="config.lockNetwork ? true : false"
|
:disabled="config.lockNetwork ? true : false"
|
||||||
|
@change="onSecureChanged"
|
||||||
/>
|
/>
|
||||||
Use secure connection (TLS)
|
Use secure connection (TLS)
|
||||||
</label>
|
</label>
|
||||||
@ -194,6 +196,16 @@ export default {
|
|||||||
|
|
||||||
this.previousUsername = event.target.value;
|
this.previousUsername = event.target.value;
|
||||||
},
|
},
|
||||||
|
onSecureChanged(event) {
|
||||||
|
const ports = ["6667", "6697"];
|
||||||
|
const newPort = event.target.checked ? 0 : 1;
|
||||||
|
|
||||||
|
// If you disable TLS and current port is 6697,
|
||||||
|
// set it to 6667, and vice versa
|
||||||
|
if (this.$refs.serverPort.value === ports[newPort]) {
|
||||||
|
this.$refs.serverPort.value = ports[1 - newPort];
|
||||||
|
}
|
||||||
|
},
|
||||||
onSubmit(event) {
|
onSubmit(event) {
|
||||||
const formData = new FormData(event.target);
|
const formData = new FormData(event.target);
|
||||||
const data = {};
|
const data = {};
|
||||||
|
Loading…
Reference in New Issue
Block a user