From 72e76ba478b3548add31177259ab6e346cf58245 Mon Sep 17 00:00:00 2001 From: Fela Ameghino Date: Sun, 9 Apr 2017 11:30:35 +0200 Subject: [PATCH] - You can now create a new Telegram account directly from Unigram - You can now look at the groups you have in common with another user - You can now update your profile picture from Settings - No more crashes when recording voice messages - Improvements with Instant View articles - Better support for bots inline buttons - Bugfixes and improvements How to install Unigram: http://telegra.ph/How-to-install-Unigram-03-10-2 --- Unigram/Unigram/App.xaml.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Unigram/Unigram/App.xaml.cs b/Unigram/Unigram/App.xaml.cs index c87edccacb..317787be03 100644 --- a/Unigram/Unigram/App.xaml.cs +++ b/Unigram/Unigram/App.xaml.cs @@ -89,7 +89,12 @@ public App() UnhandledException += async (s, args) => { args.Handled = true; - await new MessageDialog(args.Exception?.ToString() ?? string.Empty, "Unhandled exception").ShowQueuedAsync(); + + try + { + await new MessageDialog(args.Exception?.ToString() ?? string.Empty, "Unhandled exception").ShowQueuedAsync(); + } + catch { } }; #if !DEBUG