No need to abort eagerly

This commit is contained in:
Vishnu Mohandas 2021-02-02 23:33:51 +05:30
parent 5d09e6b601
commit fabe447439

View file

@ -286,7 +286,7 @@ class SyncService {
futures.add(future);
}
try {
await Future.wait(futures, eagerError: true);
await Future.wait(futures);
} on InvalidFileError {
// Do nothing
} catch (e, s) {