There was an error while loading. Please reload this page.
1 parent f9c76ee commit ed7a7b7Copy full SHA for ed7a7b7
1 file changed
ldclient/impl/aio/transport.py
@@ -91,7 +91,7 @@ async def request(
91
timeout=timeout,
92
proxy=self._proxy or _get_proxy_url(uri),
93
) as response:
94
- text = await response.text(encoding='UTF-8', errors='replace')
+ text = await response.text(encoding='UTF-8')
95
return TransportResponse(response.status, response.headers, text)
96
97
async def close(self) -> None:
0 commit comments