From a32c77c5f18807c7f8f231134afecf3a5ec1fd2b Mon Sep 17 00:00:00 2001
From: GyDi <segydi@foxmail.com>
Date: Mon, 17 Oct 2022 23:26:25 +0800
Subject: [PATCH] chore: adjust code

---
 src-tauri/src/data/prfitem.rs | 29 +++++++----------------------
 1 file changed, 7 insertions(+), 22 deletions(-)

diff --git a/src-tauri/src/data/prfitem.rs b/src-tauri/src/data/prfitem.rs
index 8557495..7f94f13 100644
--- a/src-tauri/src/data/prfitem.rs
+++ b/src-tauri/src/data/prfitem.rs
@@ -78,30 +78,15 @@ pub struct PrfOption {
 
 impl PrfOption {
   pub fn merge(one: Option<Self>, other: Option<Self>) -> Option<Self> {
-    if one.is_none() {
-      return other;
-    }
-
-    if one.is_some() && other.is_some() {
-      let mut one = one.unwrap();
-      let other = other.unwrap();
-
-      if let Some(val) = other.user_agent {
-        one.user_agent = Some(val);
-      }
-
-      if let Some(val) = other.with_proxy {
-        one.with_proxy = Some(val);
+    match (one, other) {
+      (Some(mut a), Some(b)) => {
+        a.user_agent = a.user_agent.or(b.user_agent);
+        a.with_proxy = a.with_proxy.or(b.with_proxy);
+        a.update_interval = a.update_interval.or(b.update_interval);
+        Some(a)
       }
-
-      if let Some(val) = other.update_interval {
-        one.update_interval = Some(val);
-      }
-
-      return Some(one);
+      t @ _ => t.0.or(t.1),
     }
-
-    return one;
   }
 }
 
-- 
GitLab