1
0
mirror of https://github.com/bitwarden/mobile synced 2025-02-07 23:48:48 +01: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) public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer) : base(handle, transer)
{ {
// AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser; AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
if(!Resolver.IsSet) if(!Resolver.IsSet)
{ {

View File

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