fix: Enabling gzip for request body decompression #236
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The latest ATProto update completely broke our client because
gzip
was not enabled...I'm not sure, but I think it was caused by this PR since everything started to error around the time it was merged.
Example of broken endpoint:
app.bsky.feed.getAuthorFeed
It seems that all we have to do for
reqwest
is enable a feature flag, but we need to check ifisahc
is working or not, and quickly implement a fix if it's not. This is very high priority. I can't finish it right now since it's very late and I'm about to go to sleep...@sugyan, I'm not sure if I'll be awake when you see this, so feel free to work on this yourself, if you have to. I'm giving you access to my fork of atrium just in case, but if you prefer, you can also close this PR and make a separate branch for it.