jlelse
/
hugo-micropub
Archived
1
Fork 0

Fix BunnyCDN media upload
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jan-Lukas Else 2020-05-14 22:32:00 +02:00
parent ce0baf0086
commit 0292344035
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ var bunnyCdnStorageUrl = "https://storage.bunnycdn.com"
func (b *BunnyCdnStorage) Upload(fileName string, file multipart.File) (location string, err error) {
client := http.DefaultClient
req, _ := http.NewRequest(http.MethodPut, bunnyCdnStorageUrl+"/"+url.PathEscape(b.storageZoneName)+"/"+url.PathEscape("/"+fileName), file)
req, _ := http.NewRequest(http.MethodPut, bunnyCdnStorageUrl+"/"+url.PathEscape(b.storageZoneName)+"/"+url.PathEscape(fileName), file)
req.Header.Add("AccessKey", b.key)
resp, err := client.Do(req)
if err != nil || resp.StatusCode != 201 {