fix(Message): editedTimestamp defaulting to 0 (#5847)

This commit is contained in:
Rodry
2021-06-15 12:02:56 +01:00
committed by GitHub
parent 9dda9b742f
commit 671436cbb8

View File

@@ -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
@@ -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;