mirror of
https://github.com/bitwarden/mobile
synced 2025-12-21 18:53:29 +00:00
[PM-5154] Implement combined view for passwords and passkeys on iOS Autofill extension (#3075)
* PM-5154 Implemented combined view of passwords and passkeys and improved search and items UI * PM-5154 Code improvement from PR feedback * PM-5154 Code improvement to log unknown exceptions
This commit is contained in:
committed by
GitHub
parent
53aedea93a
commit
144fc7c727
@@ -109,8 +109,9 @@ namespace Bit.Core.Services
|
||||
{
|
||||
throw;
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception ex)
|
||||
{
|
||||
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
||||
throw new UnknownError();
|
||||
}
|
||||
}
|
||||
@@ -203,8 +204,9 @@ namespace Bit.Core.Services
|
||||
Signature = signature
|
||||
};
|
||||
}
|
||||
catch (Exception)
|
||||
catch (Exception ex)
|
||||
{
|
||||
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
||||
throw new UnknownError();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user