Implement #310 optional comicinfo.xml
Some checks failed
Docker Image CI / build (push) Has been cancelled

This commit is contained in:
2025-10-16 00:26:03 +02:00
parent 626131b9b8
commit 13fb917c5d
4 changed files with 20 additions and 9 deletions

View File

@@ -16,4 +16,6 @@ public struct Constants
public static readonly int PostgresCommandTimeout = int.Parse(Environment.GetEnvironmentVariable("POSTGRES_COMMAND_TIMEOUT") ?? "60");
public static readonly bool UpdateChaptersDownloadedBeforeStarting = bool.Parse(Environment.GetEnvironmentVariable("CHECK_CHAPTERS_BEFORE_START") ?? "true");
public static readonly bool CreateComicInfoXml = bool.Parse(Environment.GetEnvironmentVariable("CREATE_COMICINFO_XML") ?? "true");
}