add a small delay to avoid the bot triggering chanserv flood protection when a channel with a lot of members needs acl fixing, closes #214 I think
This commit is contained in:
parent
193c182422
commit
99e6fa80c5
|
@ -5,6 +5,7 @@ from django.conf import settings
|
|||
from django.utils import timezone
|
||||
from events.models import Routing
|
||||
from teams.utils import get_team_from_irc_channel
|
||||
import time
|
||||
|
||||
import logging
|
||||
logger = logging.getLogger("bornhack.%s" % __name__)
|
||||
|
@ -301,6 +302,9 @@ class Plugin(object):
|
|||
# also add autoinvite for this username
|
||||
self.bot.mode(channel, '+I', '$a:%s' % username)
|
||||
|
||||
# add a delay so the bot doesn't flood itself off
|
||||
time.sleep(1)
|
||||
|
||||
|
||||
@irc3.extend
|
||||
def fix_missing_acls(self):
|
||||
|
|
Loading…
Reference in a new issue