diff --git a/addons/activeblue_ai/models/ab_ai_bot.py b/addons/activeblue_ai/models/ab_ai_bot.py index e45ab17..3847610 100644 --- a/addons/activeblue_ai/models/ab_ai_bot.py +++ b/addons/activeblue_ai/models/ab_ai_bot.py @@ -172,8 +172,8 @@ class AbAiBot(models.Model): # When online: set both 24h ahead so the bot stays "online" regardless of # cron timing. The cron explicitly marks offline by setting them to the past. if online: - poll_time = now + timedelta(hours=24) - presence_time = now + timedelta(hours=24) + poll_time = now + timedelta(minutes=10) + presence_time = now + timedelta(minutes=10) else: poll_time = now - timedelta(hours=1) presence_time = now - timedelta(hours=1)