Skip to content

Commit

Permalink
fix(Message): editedTimestamp defaulting to 0 (#5847)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImRodry committed Jun 15, 2021
1 parent 9dda9b7 commit 671436c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/structures/Message.js
Expand Up @@ -163,7 +163,7 @@ class Message extends Base {
* The timestamp the message was last edited at (if applicable)
* @type {?number}
*/
this.editedTimestamp = 'edited_timestamp' in data ? new Date(data.edited_timestamp).getTime() : null;
this.editedTimestamp = data.edited_timestamp ? new Date(data.edited_timestamp).getTime() : null;

/**
* A manager of the reactions belonging to this message
Expand Down Expand Up @@ -290,7 +290,7 @@ class Message extends Base {
patch(data) {
const clone = this._clone();

if ('edited_timestamp' in data) this.editedTimestamp = new Date(data.edited_timestamp).getTime();
if (data.edited_timestamp) this.editedTimestamp = new Date(data.edited_timestamp).getTime();
if ('content' in data) this.content = data.content;
if ('pinned' in data) this.pinned = data.pinned;
if ('tts' in data) this.tts = data.tts;
Expand Down

0 comments on commit 671436c

Please sign in to comment.