mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 16:43:26 +02:00
Simplification
This commit is contained in:
@@ -741,11 +741,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||
Intent intent = getIntent();
|
||||
boolean search = (intent != null && intent.hasExtra(Intent.EXTRA_PROCESS_TEXT));
|
||||
boolean standalone = (intent != null && intent.getBooleanExtra("standalone", false));
|
||||
boolean unified = (intent != null &&
|
||||
("unified".equals(intent.getAction()) ||
|
||||
("folder:-1".equals(intent.getAction()) &&
|
||||
intent.getLongExtra("account", 0) < 0 &&
|
||||
intent.getStringExtra("type") == null)));
|
||||
boolean unified = (intent != null && "unified".equals(intent.getAction()));
|
||||
if (!search && !(standalone && !unified))
|
||||
init();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user