mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
remove re-throws of exceptions, hiding stack trace (#1680)
* remove re-throws of exceptions, hiding stack trace * revert to catch all ApiExceptions * add back throw in auditService * whitespace
This commit is contained in:
@@ -272,7 +272,7 @@ namespace Bit.Core.Services
|
||||
{
|
||||
if (e.Error == null || e.Error.StatusCode != System.Net.HttpStatusCode.NotFound)
|
||||
{
|
||||
throw e;
|
||||
throw;
|
||||
}
|
||||
}
|
||||
return await _cryptoService.MakeKeyAsync(masterPassword, email, kdf, kdfIterations);
|
||||
|
||||
Reference in New Issue
Block a user