From 82975bfbdcc84ab7c8a587640c7a09627f1bcd72 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Mon, 16 Mar 2020 19:17:35 +0100 Subject: [PATCH] Disable the conflict check by default, as it caused more harm than good. --- src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 8acf48d..9244868 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -47,7 +47,7 @@ fn default_filter_title() -> String{ "".to_owned() } fn default_filter_class() -> String{ "".to_owned() } fn default_filter_exec() -> String{ "".to_owned() } fn default_log_level() -> i32 { 0 } -fn default_conflict_check() -> bool{ true } +fn default_conflict_check() -> bool{ false } fn default_ipc_server_port() -> i32 { 34982 } fn default_use_system_agent() -> bool { true } fn default_config_caching_interval() -> i32 { 800 }