Redirect to browser only if browser is enabled (#7914)

master
Harshavardhana 5 years ago committed by kannappanr
parent bce3f8237d
commit 04a152be12
  1. 2
      cmd/api-response.go

@ -582,7 +582,7 @@ func writeErrorResponse(ctx context.Context, w http.ResponseWriter, err APIError
case "AccessDenied":
// The request is from browser and also if browser
// is enabled we need to redirect.
if browser {
if browser && globalIsBrowserEnabled {
w.Header().Set(xhttp.Location, minioReservedBucketPath+reqURL.Path)
w.WriteHeader(http.StatusTemporaryRedirect)
return

Loading…
Cancel
Save