diff options
| author | Rapptz <[email protected]> | 2017-03-18 11:52:18 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-03-18 11:52:18 -0400 |
| commit | 4ffded622acc95e0953867e32781ebedb6629513 (patch) | |
| tree | 8237e6ce6dadb070c8319c5cb4ecfb89986c2691 /discord/http.py | |
| parent | Fix Client inability to shard by actually propagating the shard_id (diff) | |
| download | discord.py-4ffded622acc95e0953867e32781ebedb6629513.tar.xz discord.py-4ffded622acc95e0953867e32781ebedb6629513.zip | |
Removing acking on channels.
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/discord/http.py b/discord/http.py index 2627d966..34db788f 100644 --- a/discord/http.py +++ b/discord/http.py @@ -326,12 +326,6 @@ class HTTPClient: data = yield from self.request(r, json={'token': self._ack_token}) self._ack_token = data['token'] - @asyncio.coroutine - def ack_channel(self, channel_id): - r = Route('POST', '/channels/{channel_id}/ack', channel_id=channel_id) - data = yield from self.request(r, json={'token': self._ack_token}) - self._ack_token = data['token'] - def ack_guild(self, guild_id): return self.request(Route('POST', '/guilds/{guild_id}/ack', guild_id=guild_id)) |