Skip to content

Commit

Permalink
- You can now create a new Telegram account directly from Unigram
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
FrayxRulez committed Apr 9, 2017
1 parent c600316 commit 72e76ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Unigram/Unigram/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 72e76ba

Please sign in to comment.