From 07b260dea6e7f45efda7b8f9ad390b0a14f42692 Mon Sep 17 00:00:00 2001 From: glax Date: Tue, 17 Jun 2025 18:52:14 +0200 Subject: [PATCH] GC Cleanup --- API/MangaDownloadClients/FlareSolverrDownloadClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/MangaDownloadClients/FlareSolverrDownloadClient.cs b/API/MangaDownloadClients/FlareSolverrDownloadClient.cs index 23fd4fe..b76e090 100644 --- a/API/MangaDownloadClients/FlareSolverrDownloadClient.cs +++ b/API/MangaDownloadClients/FlareSolverrDownloadClient.cs @@ -168,7 +168,7 @@ public class FlareSolverrDownloadClient : DownloadClient HtmlNode pre = document.DocumentNode.SelectSingleNode("//pre"); try { - JsonDocument.Parse(pre.InnerText); + using JsonDocument _ = JsonDocument.Parse(pre.InnerText); jsonString = pre.InnerText; return true; }