Merge pull request #4720 from vieux/fix_content-type_cp
fix content-type detection in docker cp Upstream-commit: d81021803820b807875ef76676d723eee5b0faee Component: engine
This commit is contained in:
@ -883,7 +883,7 @@ func postContainersCopy(eng *engine.Engine, version version.Version, w http.Resp
|
||||
|
||||
var copyData engine.Env
|
||||
|
||||
if contentType := r.Header.Get("Content-Type"); contentType == "application/json" {
|
||||
if contentType := r.Header.Get("Content-Type"); MatchesContentType(contentType, "application/json") {
|
||||
if err := copyData.Decode(r.Body); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user