From cae2283c1d55d115baa6d7c9a909db2943d4bcf0 Mon Sep 17 00:00:00 2001 From: neru Date: Tue, 12 May 2026 18:22:15 -0300 Subject: [PATCH] fix: change config types and defaults --- src/proxy/tinymitm/proxy.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/proxy/tinymitm/proxy.h b/src/proxy/tinymitm/proxy.h index e012d9b..29e6acf 100644 --- a/src/proxy/tinymitm/proxy.h +++ b/src/proxy/tinymitm/proxy.h @@ -41,11 +41,11 @@ struct TinyMITMConfig bool autoGenerateCA = true; #ifdef _WIN32 - bool installToSystemStore = false; + bool installToSystemStore = true; #endif - std::vector customCaCertDer; - std::vector customCaKeyDer; + std::string customCaCertDer; + std::string customCaKeyDer; }; class TinyMITMProxy