mirror of
https://github.com/C9Glax/tranga.git
synced 2025-06-29 15:34:17 +02:00
Include Description in ComicInfo.xml
This commit is contained in:
@ -187,6 +187,8 @@ public class Chapter : IComparable<Chapter>
|
|||||||
comicInfo.Add(new XElement("Writer", string.Join(',', ParentManga.Authors.Select(author => author.AuthorName))));
|
comicInfo.Add(new XElement("Writer", string.Join(',', ParentManga.Authors.Select(author => author.AuthorName))));
|
||||||
if(ParentManga.OriginalLanguage is not null)
|
if(ParentManga.OriginalLanguage is not null)
|
||||||
comicInfo.Add(new XElement("LanguageISO", ParentManga.OriginalLanguage));
|
comicInfo.Add(new XElement("LanguageISO", ParentManga.OriginalLanguage));
|
||||||
|
if(ParentManga.Description != string.Empty)
|
||||||
|
comicInfo.Add(new XElement("Summary", ParentManga.Description));
|
||||||
return comicInfo.ToString();
|
return comicInfo.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user