fix: trim prefix slash
This commit is contained in:
+1
-1
@@ -64,7 +64,7 @@ func (s *Server) HandleHealth(w http.ResponseWriter, _ *http.Request) {
|
||||
func (s *Server) upload(path string, w http.ResponseWriter, req *http.Request) {
|
||||
s.logger.Infof("uploading to %s", path)
|
||||
|
||||
err := s.store.Store(path, req.Body)
|
||||
err := s.store.Store(strings.TrimPrefix(path, "/"), req.Body)
|
||||
if err != nil {
|
||||
s.logger.WithError(err).Error("error storing object in bucket")
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
|
||||
Reference in New Issue
Block a user