From e64103e5f2666377b12e9a809e4e7f88074dc432 Mon Sep 17 00:00:00 2001
From: GyDi <zzzgydi@gmail.com>
Date: Mon, 14 Nov 2022 21:11:42 +0800
Subject: [PATCH] fix: copy resource file

---
 src-tauri/src/utils/init.rs | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git a/src-tauri/src/utils/init.rs b/src-tauri/src/utils/init.rs
index cadb64a..ce595e9 100644
--- a/src-tauri/src/utils/init.rs
+++ b/src-tauri/src/utils/init.rs
@@ -87,19 +87,11 @@ pub fn init_resources(package_info: &PackageInfo) {
     }
 
     // copy the resource file
-    let mmdb_path = app_dir.join("Country.mmdb");
-    let mmdb_tmpl = res_dir.join("Country.mmdb");
-    if !mmdb_path.exists() && mmdb_tmpl.exists() {
-        let _ = fs::copy(mmdb_tmpl, mmdb_path);
-    }
-
-    // copy the wintun.dll
-    #[cfg(target_os = "windows")]
-    {
-        let wintun_path = app_dir.join("wintun.dll");
-        let wintun_tmpl = res_dir.join("wintun.dll");
-        if !wintun_path.exists() && wintun_tmpl.exists() {
-            let _ = fs::copy(wintun_tmpl, wintun_path);
+    for file in ["Country.mmdb", "geoip.dat", "geosite.dat", "wintun.dll"].iter() {
+        let src_path = res_dir.join(file);
+        let target_path = app_dir.join(file);
+        if src_path.exists() {
+            let _ = fs::copy(src_path, target_path);
         }
     }
 }
-- 
GitLab