diff options
author | 2024-08-06 18:47:39 +0100 | |
---|---|---|
committer | 2024-08-06 18:47:39 +0100 | |
commit | 0bbccdb209bd74b9bd95e61178702ad3f74eb703 (patch) | |
tree | cf632ce6f87bd0f31794450e726239f8a941bdc8 | |
parent | Enable LDAP notifications (diff) |
Update check for LDAP bootstrap message
-rw-r--r-- | arthur/exts/directory/ldap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/exts/directory/ldap.py b/arthur/exts/directory/ldap.py index a68c8c2..68d002b 100644 --- a/arthur/exts/directory/ldap.py +++ b/arthur/exts/directory/ldap.py @@ -269,7 +269,7 @@ class LDAP(commands.Cog): async for message in channel.history(limit=None, oldest_first=True): if ( message.author == self.bot.user - and "Python Discord LDAP enrollment" in message.content + and "Python Discord LDAP" in message.content ): found_message = message |