1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-12 01:28:26 +02:00

dont main page on sleep

This commit is contained in:
Kyle Spearrin 2017-02-03 00:12:53 -05:00
parent d067de086d
commit 8e9becd579

View File

@ -95,7 +95,7 @@ namespace Bit.App
MessagingCenter.Subscribe<Application>(Current, "SetMainPage", (sender) =>
{
_setMainPageCancellationTokenSource = SetMainPageFromAutofill(_setMainPageCancellationTokenSource, 1000);
_setMainPageCancellationTokenSource = SetMainPageFromAutofill(_setMainPageCancellationTokenSource, 500);
});
MessagingCenter.Subscribe<Application>(Current, "SetMainPageNow", (sender) =>
@ -118,8 +118,7 @@ namespace Bit.App
{
// Handle when your app sleeps
Debug.WriteLine("OnSleep");
_setMainPageCancellationTokenSource = SetMainPageFromAutofill(_setMainPageCancellationTokenSource, 1000);
if(Device.OS == TargetPlatform.Android && !TopPageIsLock())
{
_settings.AddOrUpdateValue(Constants.LastActivityDate, DateTime.UtcNow);
@ -157,10 +156,6 @@ namespace Bit.App
}
previousCts?.Cancel();
if(!FromAutofillService || string.IsNullOrWhiteSpace(_uri))
{
return null;
}
var cts = new CancellationTokenSource();
Task.Run(async () =>