Fix for not working start tour button
This commit is contained in:
parent
bde478e39a
commit
699eb563ab
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ public class TourViewActivity extends SherlockFragmentActivity {
|
|||
|
||||
private void startTourImpl(TourInformation tour) {
|
||||
StageInformation stage;
|
||||
if (tour.getStageInformation().isEmpty()) {
|
||||
if (!tour.getStageInformation().isEmpty()) {
|
||||
if (tour != customization.getSelectedTour() || customization.getSelectedStage() == null) {
|
||||
stage = tour.getStageInformation().get(0);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue