Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,9 @@ class TransferManager internal constructor(
val newStatus: TransferStatus = when (exception) {
is VirusCheckFetchTransferException -> TransferStatus.WAIT_VIRUS_CHECK
is VirusDetectedFetchTransferException -> TransferStatus.VIRUS_DETECTED
is ExpiredDateFetchTransferException, is NotFoundFetchTransferException -> TransferStatus.EXPIRED_DATE
is ExpiredDateFetchTransferException,
is NotFoundFetchTransferException -> TransferStatus.EXPIRED_DATE
is DownloadLimitReached -> TransferStatus.EXPIRED_DOWNLOAD_QUOTA
else -> throw exception
}
transferDao.updateStatus(transferId, newStatus)
Expand Down
Loading