GC Cleanup

This commit is contained in:
2025-06-17 18:52:14 +02:00
parent 71ad32de31
commit 07b260dea6

View File

@ -168,7 +168,7 @@ public class FlareSolverrDownloadClient : DownloadClient
HtmlNode pre = document.DocumentNode.SelectSingleNode("//pre"); HtmlNode pre = document.DocumentNode.SelectSingleNode("//pre");
try try
{ {
JsonDocument.Parse(pre.InnerText); using JsonDocument _ = JsonDocument.Parse(pre.InnerText);
jsonString = pre.InnerText; jsonString = pre.InnerText;
return true; return true;
} }