refactor(Presence): Remove redundant date parsing (v13)

#8341 v13.9.1
This commit is contained in:
March 7th 2022-07-26 09:55:32 +07:00
parent 94c0ae135a
commit aecc7edec5

View File

@ -284,7 +284,7 @@ class Activity {
* Creation date of the activity
* @type {number}
*/
this.createdTimestamp = new Date(data.created_at).getTime();
this.createdTimestamp = data.created_at;
}
/**