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