Skip to content

Commit

Permalink
fix: MISSING is not an actual object
Browse files Browse the repository at this point in the history
  • Loading branch information
B1ue-Dev committed Jul 6, 2023
1 parent cff9d97 commit 73a21a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exts/server/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async def on_message_update(
name="Message after edit",
value=after.content[-1024:]
if after.content
and not isinstance(after, interactions.MISSING) != []
and not isinstance(after, type(interactions.MISSING))
else "N/A",
)

Expand Down

0 comments on commit 73a21a6

Please sign in to comment.