Skip to content

Commit

Permalink
Fixed undocumented bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dorythecat committed Aug 18, 2024
1 parent 1ffe3a5 commit fef8a90
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cogs/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ async def transformed(self,
description = ""
for tfee in tfee_data:
transformed_data = utils.load_tf_by_id(tfee, ctx.guild)
if transformed_data == {}:
continue
transformed_data = transformed_data[
str(ctx.channel.id) if str(ctx.channel.id) in transformed_data else 'all']
into = transformed_data['into']
Expand Down

0 comments on commit fef8a90

Please sign in to comment.