-- Fix content items where monitored=false but status is still 'monitored' -- These were incorrectly set to status='monitored' during scan/import -- when the channel's monitoring mode didn't include them. UPDATE content_items SET status = 'ignored', updated_at = datetime('now') WHERE monitored = 0 AND status = 'monitored';