Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Commit

Permalink
more 443 defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed May 1, 2022
1 parent 7d5f0f3 commit 0f98d90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion proxy/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def load(self, loader):
loader.add_option(
name = "port",
typespec = int,
default = 80,
default = 443,
help = "Port to replace",
)

Expand Down
2 changes: 1 addition & 1 deletion resources/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async function setBackgroundImage() {
*/
async function handleFavoriteInput() {
const ip = document.querySelector('#ip').value
const port = document.querySelector('#port').value
const port = document.querySelector('#port').value || '443'
const ipArr = await getFavIps()

const addr = `${ip}:${port}`
Expand Down
2 changes: 1 addition & 1 deletion resources/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async function handleLanguageChange(elm) {
*/
async function setFavorite() {
const ip = document.querySelector('#ip').value
const port = document.querySelector('#port').value
const port = document.querySelector('#port').value || '443'
const ipArr = await getFavIps()

const addr = `${ip}:${port}`
Expand Down

0 comments on commit 0f98d90

Please sign in to comment.