From aef01b684cae18ae712248c4bf7c249341c79907 Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 21 May 2023 22:01:40 +0200 Subject: [PATCH] Fixed null on settings.komga --- Tranga-API/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga-API/Program.cs b/Tranga-API/Program.cs index 78f2773..deffeb7 100644 --- a/Tranga-API/Program.cs +++ b/Tranga-API/Program.cs @@ -123,6 +123,6 @@ class Settings public Settings(TaskManager.SettingsData settings) { this.downloadLocation = settings.downloadLocation; - this.komga = komga; + this.komga = settings.komga; } } \ No newline at end of file