why are video_quality_mode and rtc_region missing in auditLogEntry.changes keys?

const event: Event<Events.GuildAuditLogEntryCreate> = {
name: Events.GuildAuditLogEntryCreate,
async execute(auditLogEntry, guild) {
if (auditLogEntry.action !== AuditLogEvent.ChannelUpdate) return
for (const { key, old, new: newValue } of auditLogEntry.changes) {

// @ts-ignore
else if (key === 'video_quality_mode') //
// @ts-ignore
else if (key === 'rtc_region') //
}
};
const event: Event<Events.GuildAuditLogEntryCreate> = {
name: Events.GuildAuditLogEntryCreate,
async execute(auditLogEntry, guild) {
if (auditLogEntry.action !== AuditLogEvent.ChannelUpdate) return
for (const { key, old, new: newValue } of auditLogEntry.changes) {

// @ts-ignore
else if (key === 'video_quality_mode') //
// @ts-ignore
else if (key === 'rtc_region') //
}
};
2 Replies
d.js toolkit
d.js toolkit3d ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!
-fishon?
-fishon?OP3d ago
I checked myself that sometimes it comes in the keys and they come but they are not in the typing should they be added to the typing in the next updates? and maybe a few more that I haven't found

Did you find this page helpful?