Update Updater.exe

This commit is contained in:
Kamil Trzciński 2022-12-16 22:32:59 +01:00
parent b0277d3c0b
commit 72c15b8e74
10 changed files with 117 additions and 34 deletions

View file

@ -178,6 +178,12 @@ namespace CommonHelpers
public static void WithSentry(Action action, string? dsn = null)
{
if (File.Exists("DisableCheckForUpdates.txt"))
{
action();
return;
}
// Overwrite DSN
if (dsn != null)
{