diff --git a/mobile/lib/utils/lock_screen_settings.dart b/mobile/lib/utils/lock_screen_settings.dart index f299235a26..2a42b1d930 100644 --- a/mobile/lib/utils/lock_screen_settings.dart +++ b/mobile/lib/utils/lock_screen_settings.dart @@ -35,10 +35,10 @@ class LockScreenSettings { /// Workaround to check if "lateinit property activity has not been /// initialized" PlatformException goes away. - await Future.delayed(const Duration(milliseconds: 500)); - - ///Workaround for privacyScreen not working when app is killed and opened. - await setHideAppContent(getShouldHideAppContent()); + await Future.delayed(const Duration(milliseconds: 500), () { + ///Workaround for privacyScreen not working when app is killed and opened. + setHideAppContent(getShouldHideAppContent()); + }); } Future setHideAppContent(bool hideContent) async {