From feb3a2d519568e91d642ce3ce7e4b04b0770edf5 Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 7 Jan 2026 19:30:12 +0200 Subject: [PATCH] add comment --- crates/crawler/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/crawler/src/main.rs b/crates/crawler/src/main.rs index ab8ccbe..2c5c414 100644 --- a/crates/crawler/src/main.rs +++ b/crates/crawler/src/main.rs @@ -191,6 +191,7 @@ fn crawl(db: &mut Mysql, channel_config: &config::Channel) -> Result<()> { .is_empty() ); let _content_id = db.insert_content(channel_item_id, None, title, description)?; + // @TODO preload media } Ok(()) }