fix: typo fix

This commit is contained in:
Soulter
2024-01-03 16:26:58 +08:00
committed by GitHub
parent 8ed8a23c8b
commit 66294100ec
+1 -1
View File
@@ -125,7 +125,7 @@ class QQGOCQ(Platform):
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