From 34c7963d284d8184bbd2ce09f55bbcde9bac942b Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:14:49 +0800 Subject: [PATCH] Bug fix https://github.com/2dust/v2rayN/issues/5627 --- v2rayN/ServiceLib/Handler/ConfigHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/v2rayN/ServiceLib/Handler/ConfigHandler.cs b/v2rayN/ServiceLib/Handler/ConfigHandler.cs index 40fd4370ef..b55e1d9186 100644 --- a/v2rayN/ServiceLib/Handler/ConfigHandler.cs +++ b/v2rayN/ServiceLib/Handler/ConfigHandler.cs @@ -1506,6 +1506,7 @@ public static int AddSubItem(Config config, SubItem subItem) item.userAgent = subItem.userAgent; item.sort = subItem.sort; item.filter = subItem.filter; + item.updateTime = subItem.updateTime; item.convertTarget = subItem.convertTarget; item.prevProfile = subItem.prevProfile; item.nextProfile = subItem.nextProfile;