chore: fix the default port of qo webhook

This commit is contained in:
Soulter
2025-02-12 02:28:15 +08:00
parent 24862b0672
commit 0977aa7d0d
@@ -17,7 +17,7 @@ class QQOfficialWebhook():
def __init__(self, config: dict, event_queue: asyncio.Queue, botpy_client: Client):
self.appid = config['appid']
self.secret = config['secret']
self.port = config.get("port", 6194)
self.port = config.get("port", 6196)
if isinstance(self.port, str):
self.port = int(self.port)