Change: speedtest with HEAD instead of GET (#259)

This commit is contained in:
Fndroid 2019-08-09 15:39:13 +08:00 committed by Dreamacro
parent b926f4cf09
commit f75cd04181
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ func (p *Proxy) URLTest(ctx context.Context, url string) (t uint16, err error) {
}
defer instance.Close()
req, err := http.NewRequest(http.MethodGet, url, nil)
req, err := http.NewRequest(http.MethodHead, url, nil)
if err != nil {
return
}