prime the word list

This commit is contained in:
Kyle Spearrin 2019-05-28 16:39:10 -04:00
parent 4ca5593d2e
commit 0bbb549533
1 changed files with 5 additions and 0 deletions

View File

@ -116,6 +116,11 @@ namespace Bit.App
{
System.Diagnostics.Debug.WriteLine("XF App: OnStart");
await ClearCacheIfNeededAsync();
// Prime the word list
var workTask = Task.Run(() =>
{
var word = WordList.EEFLongWordList[1];
});
}
protected async override void OnSleep()