0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-10-01 07:19:06 +02:00

mediaapi/writers: Remove unnecessary fmt.Sprintf

This commit is contained in:
Robert Swain 2017-05-31 07:12:22 +02:00
parent 08d1eb9669
commit a0eae6922d

View file

@ -119,7 +119,7 @@ func (r *uploadRequest) doUpload(reqReader io.Reader, cfg *config.MediaAPI, db *
fileutils.RemoveDir(tmpDir, r.Logger)
return &util.JSONResponse{
Code: 400,
JSON: jsonerror.Unknown(fmt.Sprintf("Failed to upload")),
JSON: jsonerror.Unknown("Failed to upload"),
}
}
@ -222,7 +222,7 @@ func (r *uploadRequest) storeFileAndMetadata(tmpDir types.Path, absBasePath type
r.Logger.WithError(err).Error("Failed to move file.")
return &util.JSONResponse{
Code: 400,
JSON: jsonerror.Unknown(fmt.Sprintf("Failed to upload")),
JSON: jsonerror.Unknown("Failed to upload"),
}
}
if duplicate {
@ -239,7 +239,7 @@ func (r *uploadRequest) storeFileAndMetadata(tmpDir types.Path, absBasePath type
}
return &util.JSONResponse{
Code: 400,
JSON: jsonerror.Unknown(fmt.Sprintf("Failed to upload")),
JSON: jsonerror.Unknown("Failed to upload"),
}
}