Skip to content

Commit

Permalink
Fixed bug in welcome sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
sbosley committed Oct 1, 2011
1 parent f9a1b49 commit d45d844
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions astrid/src/com/todoroo/astrid/welcome/WelcomeLogin.java
Expand Up @@ -61,8 +61,10 @@ protected void onCreate(Bundle savedInstanceState) {
@Override
protected void finishAndShowNext() {
Intent welcomeScreen = new Intent(this, WelcomeGraphic.class);
welcomeScreen.putExtra(WelcomeGraphic.START_SYNC, true);
noSync = true; // For superclass
if (actFmPreferenceService.isLoggedIn()) {
welcomeScreen.putExtra(WelcomeGraphic.START_SYNC, true);
noSync = true; // For superclass
}
startActivity(welcomeScreen);
finish();
Preferences.setBoolean(KEY_SHOWED_WELCOME_LOGIN, true);
Expand Down

0 comments on commit d45d844

Please sign in to comment.