1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

fix password leaked check

This commit is contained in:
Kyle Spearrin
2019-05-01 10:33:48 -04:00
parent a018369ae8
commit caaec3ea57
2 changed files with 3 additions and 2 deletions

View File

@@ -298,7 +298,8 @@ namespace Bit.App.Pages
await _deviceActionService.HideLoadingAsync();
if(matches > 0)
{
await _platformUtilsService.ShowDialogAsync(string.Format(AppResources.PasswordExposed, matches));
await _platformUtilsService.ShowDialogAsync(string.Format(AppResources.PasswordExposed,
matches.ToString("N0")));
}
else
{