1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

fixes for UWP

This commit is contained in:
Kyle Spearrin
2017-11-28 21:27:57 -05:00
parent 029c6fcfe3
commit 022eba2c05
4 changed files with 5 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ namespace Bit.App.Pages
if((await _fingerprint.GetAvailabilityAsync()) == FingerprintAvailability.Available)
{
var fingerprintName = Helpers.OnPlatform(iOS: AppResources.TouchID, Android: AppResources.Fingerprint,
WinPhone: AppResources.Fingerprint);
Windows: AppResources.Fingerprint, WinPhone: AppResources.Fingerprint);
FingerprintCell = new ExtendedSwitchCell
{
Text = string.Format(AppResources.UnlockWith, fingerprintName),

View File

@@ -49,7 +49,7 @@ namespace Bit.App.Pages
AppResources.BitwardenAppExtensionDescription, "upload.png");
section.Add(ExtensionCell);
}
else
if(Device.RuntimePlatform == Device.Android)
{
var desc = _deviceInfoService.AutofillServiceSupported ?
AppResources.BitwardenAutofillServiceDescription :

View File

@@ -211,7 +211,6 @@ namespace Bit.App.Services
{
CipherService.CachedCiphers = null;
_tokenService.Token = null;
_tokenService.RefreshToken = null;
UserId = null;
Email = null;
_cryptoService.ClearKeys();