Update: 2026-06-23 18:12:45

This commit is contained in:
Hamza-Ayed
2026-06-23 18:12:45 +03:00
parent 2af9859ad8
commit 342611a158
4 changed files with 39 additions and 36 deletions

View File

@@ -40,7 +40,7 @@ class GetQueue {
var item = _queue.removeAt(0);
try {
item.completer.complete(await item.job());
} on Exception catch (e) {
} catch (e) {
item.completer.completeError(e);
}
_active = false;