Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/developer.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def existing_extension_autocomplete(
async def on_message(self, message: dc.Message) -> None:
# Handle !sync command. This can't be a slash command because this command is
# the one that actually adds the slash commands in the first place.
if message.content.strip() != "!sync":
if message.author.bot or message.content.strip() != "!sync":
return

if not self.bot.is_ghostty_mod(message.author):
Expand Down