Skip to content

Commit

Permalink
fix: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulter authored Jan 3, 2024
1 parent f3a46a7 commit 3a9bca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/platform/qq_gocq.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async def handle_msg(self, message: Union[GroupMessage, FriendMessage, GuildMess
resp = True
elif isinstance(i, Plain):
for nick in self.nick_qq:
if nick != '' and message.message[0].text.strip().startwith(nick):
if nick != '' and message.message[0].text.strip().startswith(nick):
resp = True
break

Expand Down

0 comments on commit 3a9bca1

Please sign in to comment.