Browse Source

Fix TypeError when constructing a channel in start_private_message.

pull/276/head
Rapptz 9 years ago
parent
commit
b862223a1f
  1. 2
      discord/client.py

2
discord/client.py

@ -767,7 +767,7 @@ class Client:
raise InvalidArgument('user argument must be a User')
data = yield from self.http.start_private_message(user.id)
channel = PrivateChannel(id=data['id'], user=user)
channel = PrivateChannel(me=self.user, id=data['id'], user=user)
self.connection._add_private_channel(channel)
return channel

Loading…
Cancel
Save