Merge pull request #195 from amir1376/fix/delete-entire-list-not-works-as-expected

fix delete entire list bug
This commit is contained in:
AmirHossein Abdolmotallebi 2024-11-16 01:15:42 +03:30 committed by GitHub
commit c1fe847eb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -208,7 +208,7 @@ class DownloadSystem(
}
fun getAllDownloadIds(): List<Long> {
return getUnfinishedDownloadIds() + getUnfinishedDownloadIds()
return getUnfinishedDownloadIds() + getFinishedDownloadIds()
}
fun getFinishedDownloadIds(): List<Long> {