mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:41:44 +08:00
http: use string contains instead of index
This commit is contained in:
parent
162aba60eb
commit
946e84d194
|
@ -297,7 +297,7 @@ func parseName(base *url.URL, name string) (string, error) {
|
|||
}
|
||||
// check it doesn't have URL parameters
|
||||
uStr := u.String()
|
||||
if strings.Index(uStr, "?") >= 0 {
|
||||
if strings.Contains(uStr, "?") {
|
||||
return "", errFoundQuestionMark
|
||||
}
|
||||
// check that this is going back to the same host and scheme
|
||||
|
|
Loading…
Reference in New Issue
Block a user