mirror of
https://github.com/Grasscutters/GrassClipper.git
synced 2024-11-22 07:08:11 +00:00
more 443 defaults
This commit is contained in:
parent
7d5f0f355e
commit
0f98d90da9
@ -37,7 +37,7 @@ class MlgmXyysd_Anime_Game_Proxy:
|
|||||||
loader.add_option(
|
loader.add_option(
|
||||||
name = "port",
|
name = "port",
|
||||||
typespec = int,
|
typespec = int,
|
||||||
default = 80,
|
default = 443,
|
||||||
help = "Port to replace",
|
help = "Port to replace",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -172,7 +172,7 @@ async function setBackgroundImage() {
|
|||||||
*/
|
*/
|
||||||
async function handleFavoriteInput() {
|
async function handleFavoriteInput() {
|
||||||
const ip = document.querySelector('#ip').value
|
const ip = document.querySelector('#ip').value
|
||||||
const port = document.querySelector('#port').value
|
const port = document.querySelector('#port').value || '443'
|
||||||
const ipArr = await getFavIps()
|
const ipArr = await getFavIps()
|
||||||
|
|
||||||
const addr = `${ip}:${port}`
|
const addr = `${ip}:${port}`
|
||||||
|
@ -88,7 +88,7 @@ async function handleLanguageChange(elm) {
|
|||||||
*/
|
*/
|
||||||
async function setFavorite() {
|
async function setFavorite() {
|
||||||
const ip = document.querySelector('#ip').value
|
const ip = document.querySelector('#ip').value
|
||||||
const port = document.querySelector('#port').value
|
const port = document.querySelector('#port').value || '443'
|
||||||
const ipArr = await getFavIps()
|
const ipArr = await getFavIps()
|
||||||
|
|
||||||
const addr = `${ip}:${port}`
|
const addr = `${ip}:${port}`
|
||||||
|
Loading…
Reference in New Issue
Block a user