From 021ad5e804920b2e5bde034f509022540b4fb74a Mon Sep 17 00:00:00 2001 From: Glax Date: Fri, 16 May 2025 21:18:19 +0200 Subject: [PATCH] Include FullArchivePath in Chapter-Response --- API/Schema/Chapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/Schema/Chapter.cs b/API/Schema/Chapter.cs index 054dd7a..75fec12 100644 --- a/API/Schema/Chapter.cs +++ b/API/Schema/Chapter.cs @@ -26,7 +26,7 @@ public class Chapter : IComparable [StringLength(256)] [Required] public string FileName { get; private set; } [Required] public bool Downloaded { get; internal set; } - [JsonIgnore] [NotMapped] public string FullArchiveFilePath => Path.Join(ParentManga.FullDirectoryPath, FileName); + [NotMapped] public string FullArchiveFilePath => Path.Join(ParentManga.FullDirectoryPath, FileName); public Chapter(Manga parentManga, string url, string chapterNumber, int? volumeNumber = null, string? title = null) {