mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 20:13:30 +01:00
feat: backport (#7778)
This commit is contained in:
@@ -197,8 +197,11 @@ class Invite extends Base {
|
|||||||
this.createdTimestamp ??= null;
|
this.createdTimestamp ??= null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ('expires_at' in data) this._expiresTimestamp = new Date(data.expires_at).getTime();
|
if ('expires_at' in data) {
|
||||||
else this._expiresTimestamp ??= null;
|
this._expiresTimestamp = data.expires_at && Date.parse(data.expires_at);
|
||||||
|
} else {
|
||||||
|
this._expiresTimestamp ??= null;
|
||||||
|
}
|
||||||
|
|
||||||
if ('stage_instance' in data) {
|
if ('stage_instance' in data) {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ class VoiceState extends Base {
|
|||||||
* The time at which the member requested to speak. This property is specific to stage channels only.
|
* The time at which the member requested to speak. This property is specific to stage channels only.
|
||||||
* @type {?number}
|
* @type {?number}
|
||||||
*/
|
*/
|
||||||
this.requestToSpeakTimestamp = new Date(data.request_to_speak_timestamp).getTime();
|
this.requestToSpeakTimestamp = data.request_to_speak_timestamp && Date.parse(data.request_to_speak_timestamp);
|
||||||
} else {
|
} else {
|
||||||
this.requestToSpeakTimestamp ??= null;
|
this.requestToSpeakTimestamp ??= null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user