From d0c8fc358ea6bc74c64adaeb7ab2a55442e56394 Mon Sep 17 00:00:00 2001 From: anion0278 Date: Mon, 8 Nov 2021 14:10:38 +0100 Subject: [PATCH] fix: hotfix - disabled App center --- Mapp.UI/App.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mapp.UI/App.xaml.cs b/Mapp.UI/App.xaml.cs index c431274..0d8df3d 100644 --- a/Mapp.UI/App.xaml.cs +++ b/Mapp.UI/App.xaml.cs @@ -48,7 +48,7 @@ protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); #if !DEBUG - AppCenter.Start("9549dd3a-1371-4a23-b973-f5e80154119d", typeof(Analytics), typeof(Crashes)); // TODO should solve secrt storing somehow :( + //AppCenter.Start("9549dd3a-1371-4a23-b973-f5e80154119d", typeof(Analytics), typeof(Crashes)); // TODO should solve secrt storing somehow :( #endif SetupExceptionHandling(); @@ -89,7 +89,7 @@ private void LogException(Exception originalException, string source) try { #if !DEBUG - Crashes.TrackError(exception); + //Crashes.TrackError(exception); #endif var assemblyName = Assembly.GetExecutingAssembly().GetName(); message += $"Unhandled exception in {assemblyName.Name} v{assemblyName.Version}";