8000
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 1d40a57 commit eeca871Copy full SHA for eeca871
libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/bot_framework_http_client.py
@@ -115,8 +115,7 @@ async def post_activity(
115
data = (await resp.read()).decode()
116
content = json.loads(data) if data else None
117
118
- if content:
119
- return InvokeResponse(status=resp.status, body=content)
+ return InvokeResponse(status=resp.status, body=content)
120
121
finally:
122
# Restore activity properties.
0 commit comments