| Commit message (Collapse) | Author | Age | Lines |
| ... | |
| |\ \ \ \ \
| | | | | |
| | | | | | |
Restrict reminder methods to authors and admins.
|
| | |\ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| |\ \ \ \ \ \
| |_|_|/ / /
|/| | | | |
| | | | | |
| | | | | | |
python-discord/bug/1112/backend/wait-for-deletion-client
Make client parameter mandatory for wait_for_deletion
|
| |/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
A client instance is necessary for the core feature of this function.
There is no way to obtain it from the other arguments. The previous
code was wrong to think `discord.Guild.me` is an equivalent.
Fixes #1112
|
| |/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Before, any user could modify the reminders of others by the id.
This restricts the behaviour to only admins and users can only modify
the reminders they authored.
|
| |\ \ \ \
| | | | |
| | | | | |
Add doc cleanup
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
Unnominate banned users from the talent pool
|
| | | | | | | |
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The defaults should be last to ensure they don't take precedence over
explicitly set values.
|
| | | |/ / /
| |/| | |
| | | | |
| | | | | |
Fixes #1065
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
Filtering: ignore errors for duplicate offensive messages
|
| | | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The error happens when a filter is triggered by a message edit.
Fixes #1099
Fixes BOT-6B
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
Don't patch ctx.message.author in antispam
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | | |
Discord has a limit of 2000 characters for messages.
|
| | | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The modification propagated across all code that is using the same
`Message` object, including all other `on_message` listeners. This
caused weird bugs e.g. the filtering cog thinking the bot authored a
message that triggered a filter.
Patching only `ctx.author` means the implementation is more fragile.
Infraction code must ensure it only retrieves the author via
`ctx.author` and not through `ctx.message`.
Fixes #1005
Fixes BOT-7D
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
python-discord/bug/frontend/1030/reddit-title-escape
Escape Markdown in reddit post titles
|
| | |\ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| | |/ / / /
|/| | | | |
|
| |/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Use a Unicode look-alike character to replace square brackets, since
they'd otherwise interfere with the Markdown.
Fixes #1030
|
| |\ \ \ \
| |/ / /
|/| | | |
Fix typo on the traceback tag
|
| |/ / /
| | |
| | | |
See issue #1101
|
| |\ \ \
| | | |
| | | | |
Remove api endpoint config values.
|
| | |\ \ \
| |/ / /
|/| | | |
|
| | | | | |
|
| | | | | |
|
| |/ / /
| | |
| | |
| | |
| | | |
The constants aren't used anywhere in the bot,
and are incompatible with the APIClient.
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
python-discord/bug/filters/1027/ignore-webhook-names
Ignore webhooks for nickname filter
|
| | |\ \ \
| |/ / /
|/| | | |
|
| |\ \ \ \
| | | | |
| | | | | |
Utils: show error message for long poll titles
|
| | |\ \ \ \
| |/ / / /
|/| | | | |
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
Help channel message pin fixes
|
| | |\ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| |\ \ \ \ \ \ |
|
| | |\ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The claimed channel check in `on_message` relies on the cache being
cleared when a channel goes dormant. If it's not cleared, it will think
the channel is still in use.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The bot's pin message was being picked up as the last message, so the
system was not considering the channel empty.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This can be used for both pinning and unpinning messages. The error
handling code was largely similar between them.
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fixes #1082
Fixes BOT-7G
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | |/ / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Embeds have a maximum length of 256 for titles.
Fixes #1079
Fixes BOT-7Q
|
| | | |/ / /
| | | | |
| | | | |
| | | | | |
Fixes #1027
|