1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-02 11:34:54 +02:00

undo busy when syncing complete

This commit is contained in:
Kyle Spearrin 2019-06-21 16:53:17 -04:00
parent 39284b475d
commit 50f809d290

View File

@ -78,15 +78,14 @@ namespace Bit.App.Pages
} }
else if(message.Command == "syncCompleted") else if(message.Command == "syncCompleted")
{ {
if(!_vm.LoadedOnce)
{
return;
}
await Task.Delay(500); await Task.Delay(500);
Device.BeginInvokeOnMainThread(() => Device.BeginInvokeOnMainThread(() =>
{ {
IsBusy = false; IsBusy = false;
if(_vm.LoadedOnce)
{
var task = _vm.LoadAsync(); var task = _vm.LoadAsync();
}
}); });
} }
}); });