From c547fb9ddb45c43df26e63235911f97c98cf1710 Mon Sep 17 00:00:00 2001 From: Cno Date: Thu, 22 Feb 2024 20:54:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AF=B9=E4=BB=8Ereg=E5=85=A5=E5=8F=A3?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E7=9A=84=E5=8D=B8=E8=BD=BD=E5=91=BD=E4=BB=A4?= =?UTF-8?q?=E8=BD=AC=E6=8D=A2=E5=8F=8D=E6=96=9C=E6=9D=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/reg_entry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/reg_entry.rs b/src/utils/reg_entry.rs index a3611fd5..79ae17ce 100644 --- a/src/utils/reg_entry.rs +++ b/src/utils/reg_entry.rs @@ -60,7 +60,7 @@ pub fn get_reg_entry(entry_id: &String) -> UninstallRegEntry { return UninstallRegEntry { version, - uninstall_string, + uninstall_string: uninstall_string.map(|str| str.replace("\\", "/")), }; } }