Shortcircuit call for intent for non-droid devices

This commit is contained in:
Neeraj Gupta 2023-02-15 15:58:23 +05:30
parent 72bcfa989f
commit e1c75476bd
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -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();