diff --git a/rss_importer/plugin.py b/rss_importer/plugin.py
index 9124ccd25b750d489e554cb3c95a550158fc9c22..8bc79df8aeba6dfc2b89095120c9c6c64889bdd4 100644
--- a/rss_importer/plugin.py
+++ b/rss_importer/plugin.py
@@ -309,7 +309,7 @@ class RSSImporter(PluginBase):
             logger.error(f"Error during chat request stream: {e}")
             return None
         # strip out the lines without bullet points (*)
-        summary = re.sub(r"^[^* ]+", "", summary, flags=re.MULTILINE)
+        summary = re.sub(r"^[^*]+", "", summary, flags=re.MULTILINE)
         return summary
 
     def feed_chat(self, index_name, messages, category_text=None):