| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-08-15 | Don't patch ctx.message.author in antispam | -4/+5 | ||
| 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 | ||||
| 2020-08-13 | Fix typo on the traceback tag | -1/+1 | ||
| See issue #1101 | ||||