Skip to content

Commit

Permalink
Merge pull request #996 from dimagi/hotfix/dont-launch-single-top
Browse files Browse the repository at this point in the history
2nd part of 2.25.3 hotfix: Don't launch login using single top flag
  • Loading branch information
ctsims committed Jan 21, 2016
2 parents 41f41cd + 375461f commit 1be9894
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static void registerSessionExpiration() {
*/
private static void letHomeScreenRedirectToLogin(Context context) {
Intent i = new Intent(context.getApplicationContext(), CommCareHomeActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
context.startActivity(i);
}
}

0 comments on commit 1be9894

Please sign in to comment.