We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77de9e7 commit 0c8a38aCopy full SHA for 0c8a38a
1 file changed
techsupport_bot/commands/factoids.py
@@ -1700,6 +1700,13 @@ async def app_command_all(
1700
guild, exclusive_property=property, include_hidden=show_hidden
1701
)
1702
1703
+ if not factoids:
1704
+ embed = auxiliary.prepare_deny_embed(
1705
+ "No factoids could be found matching your filter"
1706
+ )
1707
+ await interaction.response.send_message(embed=embed)
1708
+ return
1709
+
1710
aliases = self.build_alias_dict_for_given_factoids(factoids)
1711
1712
# If the linx server isn't configured, we must make it a file
0 commit comments