diff --git a/mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py b/mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py index 1492952..1e38de9 100644 --- a/mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py +++ b/mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py @@ -124,7 +124,7 @@ def author_name_from_id(self, author_id: str) -> str: if author_id in self.blog_plugin_cfg.authors: author_metadata = self.blog_plugin_cfg.authors.get(author_id) if "email" in self.blog_plugin_cfg.authors.get(author_id): - return f"{author_metadata.get('name')} ({author_metadata.get('email')})" + return f"{author_metadata.get('email')} ({author_metadata.get('name')})" else: return author_metadata.get("name") else: