Ver Fonte

[auth] Remove awaits (#773)

Vishnu Mohandas há 1 ano atrás
pai
commit
50b50409b1

+ 2 - 2
auth/lib/core/logging/super_logging.dart

@@ -167,7 +167,7 @@ class SuperLogging {
       await setupLogDir();
     }
     if (sentryIsEnabled) {
-      await setupSentry();
+      setupSentry().ignore();
     }
 
     Logger.root.level = Level.ALL;
@@ -250,7 +250,7 @@ class SuperLogging {
 
     // add error to sentry queue
     if (sentryIsEnabled && rec.error != null) {
-      await _sendErrorToSentry(rec.error!, null);
+      _sendErrorToSentry(rec.error!, null).ignore();
     }
   }
 

+ 2 - 1
auth/lib/ui/tools/lock_screen.dart

@@ -56,7 +56,8 @@ class _LockScreenState extends State<LockScreen> with WidgetsBindingObserver {
                     text: context.l10n.unlock,
                     iconData: Icons.lock_open_outlined,
                     onTap: () async {
-                      await _showLockScreen(source: "tapUnlock");
+                      // ignore: unawaited_futures
+                      _showLockScreen(source: "tapUnlock");
                     },
                   ),
                 ),

+ 1 - 1
auth/pubspec.yaml

@@ -1,6 +1,6 @@
 name: ente_auth
 description: ente two-factor authenticator
-version: 2.0.37+237
+version: 2.0.40+240
 publish_to: none
 
 environment: