We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe029a commit 3fb2643Copy full SHA for 3fb2643
lib/utils.py
@@ -95,7 +95,7 @@ async def send_with_gzip(self, message: Message) -> None:
95
self.started = True
96
body = message.get("body", b"")
97
more_body = message.get("more_body", False)
98
- if len(body) < (self.minimum_size and not more_body) or any(
+ if (len(body) < (self.minimum_size and not more_body)) or any(
99
value == b'application/octet-stream'
100
for header, value in self.initial_message["headers"]
101
):
0 commit comments