Open Issues Need Help
View All on GitHubAI Summary: Implement error handling in the Discord bot to gracefully manage situations where a user who has blocked the bot attempts to increment the counter in a #counter channel. The bot should avoid throwing API errors when encountering blocked users, potentially by ignoring the interaction or using a try-catch block.
AI Summary: Improve the Discord bot's `/setup` command to handle permission errors gracefully. Currently, if the bot lacks permission to send messages in the specified channel, it gets stuck in a loop. The fix requires adding error handling to check for and report insufficient permissions before attempting to update the server information.
AI Summary: Implement an anti-edit/delete feature for a Discord counter bot. This involves detecting edits or deletions of the last message in a counter channel and either restoring the previous message (potentially using a webhook to preserve user information) or invalidating the user's count. The goal is to prevent users from manipulating the counter by altering or deleting their messages.