mirror of
https://github.com/terorie/od-database-crawler.git
synced 2025-04-04 06:52:59 +00:00
Ignore FTP URLs
This commit is contained in:
parent
7fdffff58f
commit
f41198b00c
@ -33,6 +33,8 @@ var Schemes = [SchemeCount]string {
|
||||
"https",
|
||||
}
|
||||
|
||||
var ErrUnknownScheme = errors.New("unknown protocol scheme")
|
||||
|
||||
// Error reports an error and the operation and URL that caused it.
|
||||
type Error struct {
|
||||
Op string
|
||||
@ -353,7 +355,7 @@ func getscheme(rawurl string) (scheme Scheme, path string, err error) {
|
||||
case "https":
|
||||
scheme = SchemeHTTPS
|
||||
default:
|
||||
return SchemeInvalid, "", errors.New("unknown protocol scheme")
|
||||
return SchemeInvalid, "", ErrUnknownScheme
|
||||
}
|
||||
|
||||
path = rawurl[i+1:]
|
||||
|
Loading…
x
Reference in New Issue
Block a user