mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 04:30:19 +01:00
Add newline between URLs for multi-upload (#156)
This commit is contained in:
parent
f47ce48ecf
commit
fb32a2a85a
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ func (s *Server) postHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
relativeURL, _ := url.Parse(path.Join(token, filename))
|
relativeURL, _ := url.Parse(path.Join(token, filename))
|
||||||
fmt.Fprint(w, getURL(r).ResolveReference(relativeURL).String())
|
fmt.Fprintln(w, getURL(r).ResolveReference(relativeURL).String())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue