Fixed removeTask for tasks without connector

This commit is contained in:
2023-05-20 15:46:40 +02:00
parent f396640001
commit f2bd5c5e85
2 changed files with 10 additions and 5 deletions

View File

@ -45,7 +45,7 @@ public class Komga
HashSet<KomgaLibrary> ret = new();
foreach (JsonNode jsonNode in result)
foreach (JsonNode? jsonNode in result)
{
var jObject = (JsonObject?)jsonNode;
string libraryId = jObject!["id"]!.GetValue<string>();