| Commit message (Collapse) | Author | Age | Lines |
| |
|
|
|
|
|
|
| |
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
|
| |\
| |
| | |
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
|
| | |\ \ \
| |/ / /
|/| | | |
|
| |\ \ \ \ |
|
| | |\ \ \ \
| |/ / / /
|/| | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
Deps: update discord.py to 1.4.0
|
| |/ / / / /
| | | | |
| | | | |
| | | | | |
It was released on PyPI. No longer need to clone via git.
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
python-discord/bug/backend/1080/cog-reload-cancel-scheduler
Cancel scheduled tasks when cogs unload
|
| | |\ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| |\ \ \ \ \ \
| | | | | | |
| | | | | | | |
RedisCache: remove erroneous `_redis` alias
|
| | |\ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
|
| |\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Source: raise BadArgument for dynamically-created objects
|
| | | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The code is identical to the else block and there's no reason for
help commands to have an explicit check.
|
| | | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Commands, cogs, etc. created via internal eval won't have a source file
associated with them, making source retrieval impossible.
Fixes #1083
Fixes BOT-7K
|
| | | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This reverts commit 59c62162
|
| |\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
HelpChannels: use more reliable check for claimed channel
|
| | |/ / / / / /
|/| | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
If a RedisCache instance was being accessed before bot has created
the `redis_cache` instance, the `_redis` alias was being set to
None, causing AttributeErrors in lookups.
See: #1090
|
| | |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When cogs reload, they used new Scheduler instances, which aren't aware
of previously scheduled tasks. This led to duplicate scheduled tasks
when cogs re-scheduled tasks upon initialisation.
Fixes #1080
Fixes BOT-7H
|
| | |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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.
|