From e179d5bc426a8d9125cf12bb95a5e0ac109884e5 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Tue, 3 Mar 2026 16:03:23 +0800 Subject: [PATCH] Fix https://github.com/2dust/v2rayN/issues/8870 --- v2rayN/ServiceLib/Models/SingboxConfig.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/v2rayN/ServiceLib/Models/SingboxConfig.cs b/v2rayN/ServiceLib/Models/SingboxConfig.cs index 02deaabf..03261c46 100644 --- a/v2rayN/ServiceLib/Models/SingboxConfig.cs +++ b/v2rayN/ServiceLib/Models/SingboxConfig.cs @@ -28,6 +28,7 @@ public class Dns4Sbox public bool? disable_cache { get; set; } public bool? disable_expire { get; set; } public bool? independent_cache { get; set; } + public int? cache_capacity { get; set; } public bool? reverse_mapping { get; set; } public string? client_subnet { get; set; } }