check only the existence of the thumb and add ContentType metadata when creating the thumb

This commit is contained in:
Gani Georgiev
2023-03-31 23:06:22 +03:00
parent 216efb95a8
commit 48d6803d17
2 changed files with 7 additions and 6 deletions
+5 -1
View File
@@ -411,8 +411,12 @@ func (s *System) CreateThumb(originalKey string, thumbKey, thumbSize string) err
}
}
opts := &blob.WriterOptions{
ContentType: r.ContentType(),
}
// open a thumb storage writer (aka. prepare for upload)
w, writerErr := s.bucket.NewWriter(s.ctx, thumbKey, nil)
w, writerErr := s.bucket.NewWriter(s.ctx, thumbKey, opts)
if writerErr != nil {
return writerErr
}