Continue to support old unread widget PendingIntents
This commit is contained in:
parent
7880e8396e
commit
5485f7a1bb
1 changed files with 8 additions and 2 deletions
|
@ -72,8 +72,11 @@ public class MessageList extends K9Activity implements MessageListFragmentListen
|
|||
MessageViewFragmentListener, OnBackStackChangedListener, OnSwipeGestureListener,
|
||||
OnSwitchCompleteListener {
|
||||
|
||||
// for this activity
|
||||
private static final String EXTRA_SEARCH = "search";
|
||||
@Deprecated
|
||||
//TODO: Remove after 2017-09-11
|
||||
private static final String EXTRA_SEARCH_OLD = "search";
|
||||
|
||||
private static final String EXTRA_SEARCH = "search_bytes";
|
||||
private static final String EXTRA_NO_THREADING = "no_threading";
|
||||
|
||||
private static final String ACTION_SHORTCUT = "shortcut";
|
||||
|
@ -431,6 +434,9 @@ public class MessageList extends K9Activity implements MessageListFragmentListen
|
|||
mSearch.addAccountUuid(LocalSearch.ALL_ACCOUNTS);
|
||||
}
|
||||
}
|
||||
} else if (intent.hasExtra(EXTRA_SEARCH_OLD)) {
|
||||
mSearch = intent.getParcelableExtra(EXTRA_SEARCH_OLD);
|
||||
mNoThreading = intent.getBooleanExtra(EXTRA_NO_THREADING, false);
|
||||
} else {
|
||||
// regular LocalSearch object was passed
|
||||
mSearch = intent.hasExtra(EXTRA_SEARCH) ?
|
||||
|
|
Loading…
Reference in a new issue