1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02:00

async fix on log in

This commit is contained in:
Kyle Spearrin 2016-06-23 23:06:33 -04:00
parent 3532037700
commit 712f031650

View File

@ -81,9 +81,9 @@ namespace Bit.App.Pages
EmailCell.Entry.Focus();
}
private void Entry_Completed(object sender, EventArgs e)
private async void Entry_Completed(object sender, EventArgs e)
{
LogIn().Wait();
await LogIn();
}
private async Task LogIn()