From 4fbabc30ebc37204b976af7163a2e38f22e15079 Mon Sep 17 00:00:00 2001 From: gynt Date: Wed, 18 Dec 2024 10:03:24 +0100 Subject: [PATCH] fixed shell.open in tauri.conf.json such that it opens links and file folders --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 7ba4804c..1a82ead7 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -52,7 +52,7 @@ ] }, "shell": { - "open": "^((mailto:\\w+)\\|(tel:\\w+)\\|(https?://\\w+)\\|([A-Z]:)).+" + "open": "^((mailto:\\w+)|(tel:\\w+)|(https?://\\w+)|([A-Z]:)).+" }, "protocol": { "asset": true,