Skip to content

Commit

Permalink
🐛 Fix: file_image segment typo (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
KimigaiiWuyi authored Jan 16, 2023
1 parent 0b7fd38 commit aff9e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nonebot/adapters/qqguild/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async def send(
ark = ark[-1].data["ark"]
if image := (message["attachment"] or None):
image = image[-1].data["url"]
if file_image := (message["file_imag"] or None):
if file_image := (message["file_image"] or None):
file_image = file_image[-1].data["content"]
if markdown := (message["markdown"] or None):
markdown = markdown[-1].data["markdown"]
Expand Down

0 comments on commit aff9e39

Please sign in to comment.