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

This commit is contained in:
Jiralite
2022-07-23 17:21:53 +01:00
committed by GitHub
parent 5c1e558570
commit e95caa7e45

View File

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