Add Volume and chapter number to ComicInfo.xml

This commit is contained in:
glax 2023-05-20 02:29:54 +02:00
parent c2872bf177
commit 0afbfb6010

View File

@ -73,7 +73,9 @@ public abstract class Connector
XElement comicInfo = new XElement("ComicInfo",
new XElement("Tags", string.Join(',',publication.tags)),
new XElement("LanguageISO", publication.originalLanguage),
new XElement("Title", chapter.name)
new XElement("Title", chapter.name),
new XElement("Volume", chapter.volumeNumber),
new XElement("Number", chapter.chapterNumber)
);
return comicInfo.ToString();
}