Skip to content

Commit

Permalink
🐛 middleware(obv11): node.type
Browse files Browse the repository at this point in the history
  • Loading branch information
j1g5awi committed Aug 19, 2024
1 parent 102162f commit 8a9c956
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nonebot_plugin_all4one/middlewares/onebot_v11.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,14 @@ async def to_onebot_message(self, message: Message) -> OneBotMessage:
resp = await self.bot.get_forward_msg(id=segment.data["id"])
nodes = []
for node in resp["message"]:
if node.type == "forward":
if node["type"] == "forward":
continue
nodes.append(
{
"user_id": node["data"]["user_id"],
"user_name": node["data"]["nickname"],
"message": await self.to_onebot_message(
node["data"]["content"]
Message(node["data"]["content"])
),
}
)
Expand Down Expand Up @@ -226,7 +226,7 @@ async def from_onebot_message(self, message: OneBotMessage) -> Message:
"name": node["user_name"],
"uin": node["user_id"],
"content": await self.from_onebot_message(
node["message"]
OneBotMessage(node["message"])
),
},
)
Expand Down

0 comments on commit 8a9c956

Please sign in to comment.