Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make multipart parsing more forgiving: start-of-line and casing
I had a multipart response i wanted to parse, and julia failed to parse it. These changes let it parse: 1. The content-disposition was the _second_ line in each part, with the content-type coming first, so the `^` was failing to parse. 2. The `content-type:` key was lower-cased, not Title-Cased as expected. Dunno if these are generally correct, but they worked in my case.
- Loading branch information