Skip to content

Commit

Permalink
only check full data if version is specified
Browse files Browse the repository at this point in the history
  • Loading branch information
liudongmiao committed Mar 9, 2014
1 parent f588f0a commit c676acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/me/piebridge/bible/Passage.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public void onResume() {
new Thread(new Runnable() {
public void run() {
Bible bible = Bible.getBible(getBaseContext());
bible.checkBibleData(true, null);
if (version != null) {
if (version != null && version.length() > 0) {
bible.checkBibleData(true, null);
bible.setVersion(version);
}
route();
Expand Down

0 comments on commit c676acd

Please sign in to comment.