[auth] Remove awaits (#773)

This commit is contained in:
Vishnu Mohandas 2024-03-09 08:42:30 +05:30 committed by GitHub
commit 50b50409b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View file

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

View file

@ -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");
},
),
),

View file

@ -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: