From 28a4c22ef39cbb6175b30c2e7cbd20e9e8292908 Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 5 Jun 2026 22:56:29 +0100 Subject: [PATCH] RSS bot: raise initial channel fill cap from 5 to 20 Co-Authored-By: Claude Opus 4.8 --- manager/profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/profiles.py b/manager/profiles.py index ab0c7ac..b6ab083 100644 --- a/manager/profiles.py +++ b/manager/profiles.py @@ -700,7 +700,7 @@ async def _run_bot( if b.channel_gid and not config.get("rss_populated"): # first run for this feed: fill the channel with the latest items so new # subscribers see content (recent history). Done once, then flagged. - await _rss_poll(b, chat, b.channel_gid, config, seed=False, max_post=5) + await _rss_poll(b, chat, b.channel_gid, config, seed=False, max_post=20) config["rss_populated"] = True import db as _db _db.update_config(profile_id, config)