TF-3454 Add hide download feature to download all

This commit is contained in:
DatDang
2025-02-18 13:25:40 +07:00
committed by Dat H. Pham
parent e1795d1f5c
commit e91f1bbc6a
3 changed files with 20 additions and 10 deletions
@@ -49,6 +49,7 @@ class DownloadAllAttachmentsForWebInteractor {
onReceiveController.add(Right(StartDownloadAllAttachmentsForWeb(
taskId,
attachment,
cancelToken: cancelToken,
)));
final currentAccount = await _accountRepository.getCurrentAccount();
AccountRequest accountRequest;
@@ -77,7 +78,11 @@ class DownloadAllAttachmentsForWebInteractor {
yield Right(DownloadAllAttachmentsForWebSuccess(taskId: taskId));
} catch (e) {
logError('DownloadAllAttachmentsForWebInteractor::execute():EXCEPTION: $e');
yield Left(DownloadAllAttachmentsForWebFailure(exception: e, taskId: taskId));
yield Left(DownloadAllAttachmentsForWebFailure(
exception: e,
taskId: taskId,
cancelToken: cancelToken,
));
}
}
}