From 47a8537f08eacf1cb1d6315d6491436101366a5c Mon Sep 17 00:00:00 2001 From: Bao-Long Nguyen-Trong Date: Sat, 20 Jun 2009 04:06:44 +0000 Subject: [PATCH] . Clicking on the new mail notification gets you to the default folder if any else to the folder list --- src/com/android/email/activity/FolderList.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/com/android/email/activity/FolderList.java b/src/com/android/email/activity/FolderList.java index de91a7bff..b0fd28a6a 100644 --- a/src/com/android/email/activity/FolderList.java +++ b/src/com/android/email/activity/FolderList.java @@ -364,6 +364,9 @@ public class FolderList extends K9ListActivity { if (initialFolder != null) { intent.putExtra(EXTRA_INITIAL_FOLDER, initialFolder); } + else { + intent.putExtra(EXTRA_STARTUP, true); + } return intent; }