Shortcircuit call for intent for non-droid devices
This commit is contained in:
parent
72bcfa989f
commit
e1c75476bd
1 changed files with 4 additions and 0 deletions
|
@ -41,6 +41,10 @@ class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
|
|||
}
|
||||
|
||||
Future<bool> initIntentAction() async {
|
||||
if (!Platform.isAndroid) {
|
||||
AppLifecycleService.instance.setIntentAction(IntentAction.main);
|
||||
return true;
|
||||
}
|
||||
IntentAction intentAction = IntentAction.main;
|
||||
try {
|
||||
final actionResult = await _mediaExtensionPlugin.getIntentAction();
|
||||
|
|
Loading…
Add table
Reference in a new issue