-
-
Notifications
You must be signed in to change notification settings - Fork 4k
refactor: use .data
property on all classes
#8856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
.data
property.data
property on all classes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following suggestions apply to all of the occurrences of the same pattern.
if (!this.data.name_localizations) { | ||
this.data.name_localizations = {}; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (!this.data.name_localizations) { | |
this.data.name_localizations = {}; | |
} | |
this.data.name_localizations ??= {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although I'd argue that this should be done after the validation checks.
Closing in favour of #10448. |
Please describe the changes this PR makes and why it should be merged:
This PR makes the
SlashCommandBuilder
andContextMenuCommandBuilder
classes use.data
Status and versioning classification: