1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-02 04:37:50 +02:00

turn crash emails back on for testing

This commit is contained in:
Kyle Spearrin 2017-06-22 09:39:02 -04:00
parent 7823ec3fc8
commit d30b30b24f
2 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ namespace Bit.Android
public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer)
{
// AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
if(!Resolver.IsSet)
{

View File

@ -96,7 +96,7 @@ namespace Bit.Android.Services
{
Console.WriteLine("Failed to decrypt from secure storage.");
_settings.Remove(formattedKey);
//Utilities.SendCrashEmail(e);
Utilities.SendCrashEmail(e);
return null;
}
}
@ -125,7 +125,7 @@ namespace Bit.Android.Services
catch
{
Console.WriteLine("Failed to encrypt to secure storage.");
//Utilities.SendCrashEmail(e);
Utilities.SendCrashEmail(e);
}
}
@ -232,7 +232,7 @@ namespace Bit.Android.Services
_settings.Remove(AesKey);
if(!v1)
{
//Utilities.SendCrashEmail(e);
Utilities.SendCrashEmail(e);
}
return null;
}