From 83608f4994d6cc29eca8c2474695d8f1dc848df1 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 1 Nov 2021 22:04:43 +0100 Subject: [PATCH] fix: comment out symbol loading --- Dalamud/EntryPoint.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dalamud/EntryPoint.cs b/Dalamud/EntryPoint.cs index 5caccb3a3..7728b7027 100644 --- a/Dalamud/EntryPoint.cs +++ b/Dalamud/EntryPoint.cs @@ -76,9 +76,11 @@ namespace Dalamud // This is due to GitHub not supporting TLS 1.0, so we enable all TLS versions globally ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls; - + + /* BUG: This causes weird behaviour with BrowserHost, TTT and a few other plugins if (!Util.IsLinux()) InitSymbolHandler(info); + */ var dalamud = new Dalamud(info, levelSwitch, finishSignal, configuration); Log.Information("Starting a session..");