From 3eb0c9352655c906b300aae4264e29d6313e47ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Sun, 18 Dec 2022 09:55:54 +0100 Subject: [PATCH] Get rid of Sentry DSN for Updater --- Updater/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Updater/Program.cs b/Updater/Program.cs index 488e21d..7c2fb93 100644 --- a/Updater/Program.cs +++ b/Updater/Program.cs @@ -12,7 +12,6 @@ namespace Updater public const String Title = "Steam Deck Tools"; public const String RunPrefix = "-run="; public const String UpdatedArg = "-updated"; - public const String UPDATER_SENTRY_DSN = "https://a41ee1b3a3294d38887e6f43627f5853@o4504326877216768.ingest.sentry.io/4504326879641600"; /// /// The main entry point for the application. @@ -23,7 +22,7 @@ namespace Updater Instance.WithSentry(() => { Run(); - }, UPDATER_SENTRY_DSN); + }); } static void Run()