Using [bytesPart](https://package.elm-lang.org/packages/elm/http/latest/Http#bytesPart) in a [multipartBody](https://package.elm-lang.org/packages/elm/http/latest/Http#multipartBody) will always set the `filename` in `Content-Disposition` to "blob" even though `bytesPart` used with correct parameters. ```elm Http.bytesPart "picture_name.jpg" "image/png" bytes ``` will become `Content-Disposition: form-data; name="picture_name.jpg"; filename="blob"`