| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-02-26 | Disable TRACE logging for Sentry breadcrumbs. | -1/+1 | ||
| 2020-02-26 | Added DMs ignoring to antimalware check | -1/+2 | ||
| 2020-02-26 | Fix comparison operator when checking token expiration. | -1/+1 | ||
| With `<` the check only went through when the token was already expired, making revoking redundant; and didn't go through when the token still had some time before expiration. | ||||
| 2020-02-26 | Added to AntiMalware staff ignore check. | -1/+5 | ||
| 2020-02-26 | Check for falsy values instead of ``""` and `None` explicitly. | -2/+1 | ||
| After the change to also check empty strings to avoid unucessary requests, it is no longer necessary to do an explicit value check, as the only values that can come from the .env file are `None` and strings Co-authored-by: Karlis S <[email protected]> | ||||
| 2020-02-26 | Specify the logged time is in UTC. | -1/+1 | ||
| 2020-02-26 | Create task for `revoke_access_token` when unloading cog to ensure it's ↵ | -1/+1 | ||
| executed. | ||||
| 2020-02-26 | Make sure token exists before checking its expiration. | -1/+1 | ||
| Without the check and an invalid token, an AttributeError is raised; blocking the relevant ClientError from being raised in `get_access_token`. | ||||
| 2020-02-26 | Check for empty strings alongside None before loading cog. | -1/+2 | ||
| Docker fetches values from the .env itself and defaults to "" instead of None, needing to do invalid access token requests before unloading itself. | ||||
| 2020-02-25 | Restyle if body to include the error instead of adding the cog. | -3/+3 | ||
| 2020-02-25 | Fix `__iter__` for classes without subsections. | -2/+3 | ||
| The previous implementation assumed the config class was a subsection, failing with a KeyError if it wasn't one. Co-authored-by: kwzrd <[email protected]> | ||||
| 2020-02-25 | Assign created task to a variable. | -1/+1 | ||
| Co-authored-by: SebastiaanZ <[email protected]> | ||||
| 2020-02-25 | Wait for available guild instead of bot startup. | -1/+1 | ||
| Co-authored-by: SebastiaanZ <[email protected]> | ||||
| 2020-02-24 | Do not attempt to load Reddit cog when environment variables are not provided. | -1/+4 | ||
| When environment variables weren't provided; the cog attempted to create a BasicAuth object with None as values resulting in an exception before the event loop was started and a subsequent crash. | ||||
| 2020-02-24 | Remove unused `chunks` function and its tests. | -26/+1 | ||
| The function was only used in the since removed `Events` cog. | ||||
| 2020-02-24 | Change docstring mood. | -1/+1 | ||
| 2020-02-24 | Change warning text. | -1/+1 | ||
| 2020-02-24 | Add ConfigVerifier cog. | -0/+41 | ||
| Adds ConfigVerifier which verifies channels when loaded. | ||||
| 2020-02-24 | Implement `__iter__` on constants YAMLGetter. | -0/+4 | ||
| Python tries to fall back on passing indices to `__getitem__` without iter implemented; failing on the first line. | ||||
| 2020-02-23 | Sync: code style refactoring | -7/+10 | ||
| * Convert diff namedtuple to dict outside the dict comprehension * Define long condition as a boolean instead of in the if statement * Pass role and user dicts to aiohttp normally instead of unpacking | ||||
| 2020-02-23 | Reminders: don't cancel task if reminder is invalid when rescheduling | -6/+11 | ||
| If a reminder is invalid, it won't get rescheduled. Therefore, there wouldn't exist a task to cancel and it'd raise a warning. Fixes BOT-1C | ||||
| 2020-02-23 | Add Sentdex server to whitelist | -0/+1 | ||
| 2020-02-24 | Change verification post log level to info, tidy code. | -14/+13 | ||
| 2020-02-24 | Reduce log level of tag cooldown notice. | -2/+4 | ||
| 2020-02-23 | Remove call to delete reminder, as ensure method already does it. | -1/+0 | ||
| 2020-02-23 | Check reminder user and channel before send and schedule. | -17/+38 | ||
| 2020-02-23 | Don't log exception traceback on Forbidden for welcomes. | -12/+9 | ||
| 2020-02-23 | Don't set project log level so it uses root level. | -1/+1 | ||
| 2020-02-23 | Define `_count` in `__init__`. | -0/+1 | ||
| 2020-02-23 | Suppress NotFound on react clear, tidy imports. | -18/+21 | ||
| 2020-02-21 | Change defcon log levels from warning to info | -2/+2 | ||
| 2020-02-21 | Enable logging warnings to Sentry | -3/+12 | ||
| 2020-02-21 | Bot: send empty cache warning to a webhook | -3/+12 | ||
| This is more visible than it would be if it was only logged. * Add a webhook for the dev-log channel to constants | ||||
| 2020-02-21 | Attach jump_to url to the event | -0/+8 | ||
| 2020-02-21 | Use push_scope instead of configure_scope | -2/+2 | ||
| 2020-02-21 | Use log.error instead of capture_exception | -2/+2 | ||
| 2020-02-21 | Remove AIOHTTP integration from Sentry since it is intended for AIOHTTP servers. | -3/+1 | ||
| 2020-02-21 | Remove tests for custom bot log | -62/+2 | ||
| 2020-02-21 | Remove the space that makes the test fail | -1/+1 | ||
| 2020-02-21 | Use the code provided by sco1 to fix the checks failing. | -5/+10 | ||
| 2020-02-21 | Add basic sentry usage for command errors giving user information and ↵ | -85/+10 | ||
| command context. | ||||
| 2020-02-21 | Attach extra information on a command error | -1/+13 | ||
| 2020-02-21 | Set BOT_SENTRY_DSN environment variable for tests | -1/+1 | ||
| 2020-02-21 | Implement basic Sentry SDK usage | -2/+14 | ||
| 2020-02-20 | Update flake8-annotations to v2.0. | -10/+51 | ||
| 2020-02-20 | Change to explicit logs, remove logmatic. | -160/+76 | ||
| 2020-02-19 | API: add comment explaining class attributes | -0/+2 | ||
| Explain changes caused by 22a55534ef13990815a6f69d361e2a12693075d5. | ||||
| 2020-02-19 | Sync: add confirmation timeout and max diff to config | -16/+24 | ||
| 2020-02-19 | Moderation: show avatar in infraction deactivation log | -0/+5 | ||
| 2020-02-17 | Pagination migrations - Emoji Data Structure Modified | -1/+1 | ||
| Changed the pagination emoji collection from list to tuple This change was suggested since this collection is constant | ||||