Merge pull request #830 from Bars107/sherpafy

Fix for not working start tour button
This commit is contained in:
vshcherb 2014-08-08 18:20:18 +02:00
commit c289db6cce

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 {