From 052893bbf8f957b5ec55812338f0f7ca864f2688 Mon Sep 17 00:00:00 2001 From: keiko233 Date: Sat, 11 Nov 2023 22:34:30 +0800 Subject: [PATCH] fix: valid with unified-delay & tcp-concurrent --- src-tauri/src/config/profiles.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src-tauri/src/config/profiles.rs b/src-tauri/src/config/profiles.rs index cf9e5cbe..92add4ce 100644 --- a/src-tauri/src/config/profiles.rs +++ b/src-tauri/src/config/profiles.rs @@ -55,7 +55,11 @@ impl IProfiles { pub fn template() -> Self { Self { - valid: Some(vec!["dns".into()]), + valid: Some(vec![ + "dns".into(), + "unified-delay".into(), + "tcp-concurrent".into(), + ]), items: Some(vec![]), ..Self::default() }