From 0bbb5495337d7b206d016e845f18d6a2860788f4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 28 May 2019 16:39:10 -0400 Subject: [PATCH] prime the word list --- src/App/App.xaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App/App.xaml.cs b/src/App/App.xaml.cs index ddbf86fb1..592d0cf10 100644 --- a/src/App/App.xaml.cs +++ b/src/App/App.xaml.cs @@ -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()