Disable experience upgrade prompts

This commit is contained in:
Niels Andriesse 2019-08-06 13:20:45 +10:00
parent 3fd3468be5
commit 90056fe670

View File

@ -152,9 +152,11 @@ public abstract class PassphraseRequiredActionBarActivity extends BaseActionBarA
return STATE_WELCOME_SCREEN; return STATE_WELCOME_SCREEN;
} else if (!TextSecurePreferences.hasPromptedPushRegistration(this)) { } else if (!TextSecurePreferences.hasPromptedPushRegistration(this)) {
return STATE_PROMPT_PUSH_REGISTRATION; return STATE_PROMPT_PUSH_REGISTRATION;
} else if (ExperienceUpgradeActivity.isUpdate(this)) { }
return STATE_EXPERIENCE_UPGRADE; // else if (ExperienceUpgradeActivity.isUpdate(this)) {
} else { // return STATE_EXPERIENCE_UPGRADE;
// }
else {
return STATE_NORMAL; return STATE_NORMAL;
} }
} }