fixed bug with not applying changes to subnet address when reinstalling server
This commit is contained in:
parent
7169480999
commit
f3b3f165a8
2 changed files with 64 additions and 14 deletions
|
@ -93,9 +93,9 @@ PageType {
|
|||
var tmpText = textField.text
|
||||
tmpText = tmpText.toLocaleLowerCase()
|
||||
|
||||
var indexHttps = tmpText.indexOf("https://")
|
||||
if (indexHttps === 0) {
|
||||
if (tmpText.startsWith("https://")) {
|
||||
tmpText = textField.text.substring(8)
|
||||
site = tmpText
|
||||
} else {
|
||||
site = textField.text
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue