mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
Fixed PM Channel bug, 3.8.2
Clients no longer crashed when receiving PM channel messages.
This commit is contained in:
@@ -3,6 +3,7 @@ class PMChannel {
|
||||
this.user = client.getUser("id", data.recipient.id);
|
||||
this.id = data.id;
|
||||
this.messages = [];
|
||||
this.client = client;
|
||||
}
|
||||
|
||||
addMessage(data){
|
||||
|
||||
@@ -11,11 +11,10 @@ class Channel {
|
||||
this.messages = [];
|
||||
this.roles = [];
|
||||
|
||||
for (var role of data.permission_overwrites) {
|
||||
|
||||
this.roles.push( new ChannelPermissions(role, this) );
|
||||
|
||||
}
|
||||
if(data.permission_overwrites)
|
||||
for (var role of data.permission_overwrites) {
|
||||
this.roles.push( new ChannelPermissions(role, this) );
|
||||
}
|
||||
|
||||
//this.isPrivate = isPrivate; //not sure about the implementation of this...
|
||||
}
|
||||
|
||||
@@ -12,7 +12,13 @@ class Message{
|
||||
this.editedTimestamp = data.edited_timestamp;
|
||||
this.content = data.content.trim();
|
||||
this.channel = channel;
|
||||
this.author = this.channel.server.getMember("id", author.id);
|
||||
|
||||
if(this.isPrivate){
|
||||
this.author = this.channel.client.getUser("id", author.id);
|
||||
}else{
|
||||
this.author = this.channel.server.getMember("id", author.id) || this.channel.client.getUser("id", author.id);
|
||||
}
|
||||
|
||||
this.attachments = data.attachments;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user