Erik Terwan
Erik Terwan
Yeah i've been planning a rewrite for this, in vanilla JS, for a while now. When/if i have some free time i'll start work on that, fixing this, and other...
Can you give an example of the assets that fail?
The incorrect size issue should be fixed in v1.2.1, just tested it with your image. The colorspace is something i'm looking into right now.
This issue started around the 8th of April for me, used to work fine before that.
Hm yeah, this has probably something to do with Vapor or one of it's dependencies; stuff like vapor/core get's updated automatically on every fresh build, e.g. when using continuous deployment....
Alright it's working again now; downgraded dependencies [multipart](https://github.com/vapor/multipart/releases) to **3.0.3**, [http](https://github.com/vapor/http/releases) to **3.1.11**, [core](https://github.com/vapor/core/releases) to **3.7.1** and [crypto](https://github.com/vapor/crypto/releases) to **3.3.2**. So something broke in those changes; are you using the...
Alright, updated all the other dependencies, so i'm almost certain [#34](https://github.com/vapor/multipart/pull/34) is the culprit here. Still not sure why this breaks the uploading (probably the sha256 payload hashing), only on...
Quick fix for now; Add the multipart dependency to your `Package.swift`, before the PR is merged, e.g. v3.0.3; ```swift Package( dependencies: [ .package(url: "https://github.com/vapor/multipart.git", .exact("3.0.3")) .... etc ], targets: [...