Merge pull request #23 from rumanzo/issue20

fix regex
This commit is contained in:
Alexey Kostin 2020-10-27 09:24:02 +03:00 committed by GitHub
commit c2359e3f11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,7 +163,7 @@ func logic(key string, value map[string]interface{}, flags *Flags, chans *Channe
Separator: flags.PathSeparator, Separator: flags.PathSeparator,
} }
if isAbs, _ := regexp.MatchString(`^([A-Z]:)?,\\`, key); isAbs == true { if isAbs, _ := regexp.MatchString(`^([A-Z]:)?\\`, key); isAbs == true {
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
newstructure.TorrentFilePath = key newstructure.TorrentFilePath = key
} else { // for unix system find in search paths } else { // for unix system find in search paths