|  | Commit message (Collapse) | Author | Age | Lines | 
|---|
| |\  
| | 
| | | Add a newline character in code-blocks to ensure content isn't interpreted as the language. | 
| |/ |  | 
| |\  
| | 
| | | Add logging and restart config to docker compose | 
| | |\  
| |/  
|/| |  | 
| |\ \  
| | | 
| | | 
| | | 
| | | | python-discord/sebastiaan/prevent-accidental-addition-talentpool-cache
Prevent accidental addition of users to talentpool cache when using `!talentpool get_review` | 
| |/ /  
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| |   
| | | Bug: When asking for a review for a user that isn't currently nominated
using the `!talentpool get_review <userid>` command, the user is added
to the talentpool `watched_users` cache, causing their messages to be
relayed to the talentpool watch channel.
Steps to reproduce: Use `!talentpool get_review <user_id>`, where
`<user_id>` is the ID of a user not currently nominated. The command
will correctly reply that the user isn't nominated, but their ID will be
added as a key to the defaultdict nonetheless.
Solution: replace all regular getitem usages with `.get(<user_id>)`, as
the Reviewer should never insert IDs using the regular defaultdict path.
Additional note: I've replaced all occurrences of regular getitem access
into the defaultdict, even those that are normally not reachable with
the id of a user that's currently not nominated, to prevent a future
refactor from accidentally introducing this bug again. | 
| |\ \  
| | | 
| | | | Add New Celebrities to `!superstarify`. | 
| | |\ \  
| |/ /  
|/| | |  | 
| |\ \ \  
| | | | 
| | | | | Redirect output to bot-commands channel for the !eval command | 
| | |\ \ \  
| |/ / /  
|/| | | |  | 
| | |\ \ \  
| | | | | 
| | | | | 
| | | | | | eval-redirect-output | 
| | | | | | |  | 
| | |/ / /  
| | | |   
| | | |   
| | | | | users twice | 
| | | | | |  | 
| | | |\ \  
| |_|/ /  
|/| | | |  | 
| |\ \ \ \  
| | | | | 
| | | | | | Unescape html escape characters in reddit text and titles | 
| | |\ \ \ \  
| |/ / / /  
|/| | | | |  | 
| |\ \ \ \ \  
| | | | | | 
| | | | | | | Create identity.md | 
| | |\ \ \ \ \  
| |/ / / / /  
|/| | | | | |  | 
| | | | | | | |  | 
| | | | | | | |  | 
| | | | | | | 
| | | | | | 
| | | | | | | Tag to demonstrate the difference between `is` and `==`. | 
| | | | | | | |  | 
| | | | | | | |  | 
| | | | | | | |  | 
| | | | | | | |  | 
| | | | | | | |  | 
| | | | | | | |  | 
| | | | | | | 
| | | | | | 
| | | | | | 
| | | | | | 
| | | | | | 
| | | | | | 
| | | | | | 
| | | | | | 
| | | | | | | Celebrities:
- The Weeknd
- Ringo Starr
- John Lennon
- Guido Van Rossum
- George Harrison
- Darude | 
| | |_|_|/ /  
|/| | | | |  | 
| | | | | |\  
| |_|_|_|/  
|/| | | | |  | 
| |\ \ \ \ \  
| | | | | | 
| | | | | | | Create str-join.md | 
| | |\ \ \ \ \  
| |/ / / / /  
|/| | | | | |  | 
| |\ \ \ \ \ \  
| | | | | | | 
| | | | | | | | feat: Use embed timestamp in modpings off | 
| | |\ \ \ \ \ \  
| |/ / / / / /  
|/| | | | | | |  | 
| |\ \ \ \ \ \ \  
| | | | | | | | 
| | | | | | | | | Code Snippets: Fix Error Handling for HTTP Request Errors | 
| | |\ \ \ \ \ \ \  
| |/ / / / / / /  
|/| | | | | | | |  | 
| |\ \ \ \ \ \ \ \  
| | | | | | | | | 
| | | | | | | | | | Fixed the code snippets limits | 
| | |\ \ \ \ \ \ \ \  
| |/ / / / / / / /  
|/| | | | | | | | |  | 
| | | | | | | | | | |  | 
| | | | | | | | | | |  | 
| | | | | | | | | | |  | 
| | |\ \ \ \ \ \ \ \  
| | | | | | | | | | 
| | | | | | | | | | | Merge pull request #1028 from dolphingarlic/master | 
| | | | | | | | | | | |  | 
| | | | | | | | | | | |  | 
| | | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | 
| | | | | | | | | | | Just cause a URL looks valid doesn't mean it will be valid, so a 404
is a normal and harmless error.
Fixes #1553
Fixes BOT-Z4
Fixes BOT-Z8
Fixes BOT-Z9 | 
| | |_|/ / / / / / /  
|/| | | | | | | |   
| | | | | | | | |   
| | | | | | | | |   
| | | | | | | | |   
| | | | | | | | |   
| | | | | | | | |   
| | | | | | | | | | Move the exception handling to `on_message` to avoid writing a lot of
None checks; `_fetch_response` is used multiple times in various places.
Fixes #1554
Fixes BOT-Z7 | 
| | | | | | | | | | |  | 
| | |_|/ / / / / /  
|/| | | | | | | |  | 
| |\ \ \ \ \ \ \ \  
| | | | | | | | | 
| | | | | | | | | | Error Handler tests |