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 8e62df9 commit e0dc80aCopy full SHA for e0dc80a
docs/changelog.rst
@@ -5,6 +5,7 @@ Master
5
Massive documentation updates
6
7
- TwitchIO
8
+ - Removed unexpected loop termination from `WSConnection._close()`
9
- Fix bug where # prefixed channel names in initial_channels would not trigger :func:`twitchio.Client.event_ready`
10
- :func:`User.create_clip` has been fixed by converting bool to string in http request
11
twitchio/websocket.py
@@ -520,5 +520,4 @@ async def _close(self):
520
if self._websocket:
521
await self._websocket.close()
522
if self._client._http.session:
523
- await self._client._http.session.close()
524
- self._loop.stop()
+ await self._client._http.session.close()
0 commit comments