From 8a0b3a087056db9473d3130936b8f59727254a89 Mon Sep 17 00:00:00 2001 From: BONNEVILLE Geoffroy Date: Tue, 24 Jul 2018 10:55:31 +0200 Subject: [PATCH] HockeyApp correct app id --- ModernKeePass/App.xaml.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ModernKeePass/App.xaml.cs b/ModernKeePass/App.xaml.cs index 739c050..03a88dd 100644 --- a/ModernKeePass/App.xaml.cs +++ b/ModernKeePass/App.xaml.cs @@ -30,7 +30,11 @@ namespace ModernKeePass /// public App() { +#if DEBUG HockeyClient.Current.Configure("2fe83672887b4910b9de93a4398d0f8f"); +#else + HockeyClient.Current.Configure("9eb5fbb79b484fbd8daf04635e975c84"); +#endif InitializeComponent(); Suspending += OnSuspending; Resuming += OnResuming;