Fix for not finding the game when not updating.

This commit is contained in:
Chris 2019-08-10 01:59:24 -04:00
parent aee1d80d4d
commit e13a9f11bd
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public class MainActivity extends AppCompatActivity {
foundGame = apkExtractor.checkForInstallOrUpgrade();
if(foundGame[0] && (foundGame[1] || foundGame[2]))
if(foundGame[1] || foundGame[2])
{
BackgroundTask backgroundTask = new BackgroundTask(MainActivity.this, apkExtractor, foundGame[0]);
backgroundTask.execute();