Fix for not working start tour button

This commit is contained in:
Denis 2014-08-08 19:17:30 +03:00
parent bde478e39a
commit 699eb563ab

View file

@ -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 {