Skip to content
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

Ephemeral tag #233

Merged
merged 4 commits into from
Jan 4, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions tags/tags.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1211,10 +1211,19 @@ discord.js does not support features until they are officially documented.
While there might be a way for these features to work, it can change at any time without any notice
"""

[partial-group-dm]
keywords = ["group-dm", "send-does-not-exist"]
[ephemeral]
keywords = ["ephemeral-deprecated"]
content = """
Bots cannot send messages in partial group dm channels.
Use `if ('send' in channel)` or compare `channel.type` to mitigate this.
A fix will be implemented in 14.16.2, where you can use `channel.isSendable()`
The `ephemeral` option will be removed
Wolvinny marked this conversation as resolved.
Show resolved Hide resolved
```diff
- {..., ephemeral: true}
+ {..., flags: MessageFlags.Ephemeral}
``` Read [here](<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_OR>) on how to specify multiple flags
"""

[entry-point]
keywords = ["50240", "remove-entry-point"]
content = """
You have enabled activities in the Activity Settings on the dev portal.
Either do not emable it if you dont need it or include the command that was created in the request body
Wolvinny marked this conversation as resolved.
Show resolved Hide resolved
"""