From 254383b0065c10cdabd917022bf56cd3d0a53a83 Mon Sep 17 00:00:00 2001 From: glax Date: Sat, 28 Jun 2025 20:28:28 +0200 Subject: [PATCH] Include Description in ComicInfo.xml --- API/Schema/Chapter.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/API/Schema/Chapter.cs b/API/Schema/Chapter.cs index 57eb76a..1975f47 100644 --- a/API/Schema/Chapter.cs +++ b/API/Schema/Chapter.cs @@ -187,6 +187,8 @@ public class Chapter : IComparable comicInfo.Add(new XElement("Writer", string.Join(',', ParentManga.Authors.Select(author => author.AuthorName)))); if(ParentManga.OriginalLanguage is not null) comicInfo.Add(new XElement("LanguageISO", ParentManga.OriginalLanguage)); + if(ParentManga.Description != string.Empty) + comicInfo.Add(new XElement("Summary", ParentManga.Description)); return comicInfo.ToString(); }