fix(push): correct client type

This commit is contained in:
InfinityPacer
2024-09-13 18:54:48 +08:00
parent 5ec7357c56
commit 2f2ecc8c43
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ class SlackModule(_ModuleBase, _MessageBase):
self._configs = {}
self._clients = {}
for client in clients:
if client.type == "telegram" and client.enabled:
if client.type == "slack" and client.enabled:
self._configs[client.name] = client
self._clients[client.name] = Slack(**client.config, name=client.name)