Ref: Entfernt await

This commit is contained in:
2026-01-03 14:17:37 +01:00
parent 77da3be5d7
commit 474009942e

View File

@@ -25,12 +25,12 @@ class BackgroundTaskController {
);
} else {
unawaited(
Isolate.run(() async {
await _runTask(
Isolate.run(() {
unawaited(_runTask(
GenerateTransactionsTask(),
const Duration(minutes: 1),
const Duration(minutes: 30),
);
));
}),
);
}