check: Don't break on URL parsing error.

This commit is contained in:
David Howden 2016-03-06 22:21:54 +11:00
parent 996bee7eb6
commit a55be0e8bf

View File

@ -117,7 +117,7 @@ func walkLibrary(path string) (<-chan string, error) {
loc, err := decodeLocation(t.Location)
if err != nil {
fmt.Println(err)
break
continue
}
paths <- loc
}