diff --git a/API/Schema/MangaContext/Chapter.cs b/API/Schema/MangaContext/Chapter.cs index 2fc9ac3..eabccc8 100644 --- a/API/Schema/MangaContext/Chapter.cs +++ b/API/Schema/MangaContext/Chapter.cs @@ -84,7 +84,7 @@ public class Chapter : Identifiable, IComparable //TODO Log here this.Downloaded = File.Exists(chapter.FullArchiveFilePath); - await context.Sync(token??CancellationToken.None, GetType(), "CheckDownloaded"); + await context.Sync(token??CancellationToken.None, GetType(), $"CheckDownloaded {this} {this.Downloaded}"); return this.Downloaded; }