diff --git a/src-tauri/src/core/profiles.rs b/src-tauri/src/core/profiles.rs
index 7fa8058145872e8029adfc021bba2b8f143e115a..d82d48d87f3e5a9818329125b4f4bb58925a62c3 100644
--- a/src-tauri/src/core/profiles.rs
+++ b/src-tauri/src/core/profiles.rs
@@ -380,8 +380,7 @@ impl Profiles {
         patch!(each, item, url);
         patch!(each, item, selected);
         patch!(each, item, extra);
-
-        each.updated = Some(help::get_now());
+        patch!(each, item, updated);
 
         self.items = Some(items);
         return self.save_file();
diff --git a/src/components/proxy/proxy-group.tsx b/src/components/proxy/proxy-group.tsx
index acd516dd4a33209a73bdc305242df5d7dd076e21..61be923c7778857b43c0d1c74ed049536f8323b7 100644
--- a/src/components/proxy/proxy-group.tsx
+++ b/src/components/proxy/proxy-group.tsx
@@ -75,7 +75,7 @@ const ProxyGroup = ({ group }: Props) => {
       } else {
         profile.selected[index] = { name: group.name, now: name };
       }
-      await patchProfile(profiles!.current!, profile);
+      await patchProfile(profiles!.current!, { selected: profile.selected });
     } catch (err) {
       console.error(err);
     }
diff --git a/src/pages/profiles.tsx b/src/pages/profiles.tsx
index db456e4dbcd76ab06e52534dd36c2cfb2d15adfd..e138e526aa709efde99b262f27e22e4a48191a6a 100644
--- a/src/pages/profiles.tsx
+++ b/src/pages/profiles.tsx
@@ -81,7 +81,10 @@ const ProfilePage = () => {
         name,
         now,
       }));
-      patchProfile(current!, profile).catch(console.error);
+
+      patchProfile(current!, { selected: profile.selected }).catch(
+        console.error
+      );
       // update proxies cache
       if (hasChange) mutate("getProxies", getProxies());
     }, 100);
diff --git a/src/services/cmds.ts b/src/services/cmds.ts
index 057809e34449a6fcf3ef8ce6104ccc5bd960aa20..f01f1531a2014d4f3dde50071d06126a2cc79902 100644
--- a/src/services/cmds.ts
+++ b/src/services/cmds.ts
@@ -35,7 +35,7 @@ export async function deleteProfile(index: string) {
 
 export async function patchProfile(
   index: string,
-  profile: CmdType.ProfileItem
+  profile: Partial<CmdType.ProfileItem>
 ) {
   return invoke<void>("patch_profile", { index, profile });
 }