Don't crash if nothing is installed

parser-fixes
Bradlee Speice 2015-01-02 16:41:05 -05:00
parent 412eb4b943
commit 4b9c146248
1 changed files with 2 additions and 0 deletions

View File

@ -91,6 +91,8 @@ public class BibleViewer extends BaseActivity implements Injector {
// No books installed, start the downloader.
Intent i = new Intent(this, DownloadActivity.class);
startActivityForResult(i, 0);
finish();
return;
}
setContentView(R.layout.activity_bible_viewer);