mirror of
https://code.dumpstack.io/tools/wi.git
synced 2024-11-13 05:59:19 +02:00
Use https protocol instead of http as default scheme
This commit is contained in:
parent
50b0c0a520
commit
b598bbdfc8
|
@ -82,7 +82,7 @@ func Get(db *sql.DB, url string) {
|
|||
client := &http.Client{}
|
||||
|
||||
if !strings.Contains(url, "://") {
|
||||
url = "http://" + url
|
||||
url = "https://" + url
|
||||
}
|
||||
|
||||
// TODO Full url encoding
|
||||
|
|
Loading…
Reference in New Issue