Fetch should conform to metadata format

This commit is contained in:
Mustafa Gezen 2022-05-10 10:34:02 +02:00
parent 6ab7f9f00a
commit 3f4c4ad211
1 changed files with 3 additions and 3 deletions

View File

@ -57,9 +57,9 @@ func Fetch(logger io.Writer, cdnUrl string, dir string, fs billy.Filesystem, sto
continue
}
lineInfo := strings.Split(line, " ")
hash := lineInfo[0]
path := lineInfo[1]
lineInfo := strings.SplitN(line, " ", 2)
hash := strings.TrimSpace(lineInfo[0])
path := strings.TrimSpace(lineInfo[1])
url := fmt.Sprintf("%s/%s", cdnUrl, hash)
if storage != nil {