fix delete entire list bug

This commit is contained in:
AmirHossein Abdolmotallebi 2024-11-16 01:13:56 +03:30
parent 8f64aa51e7
commit 6c3c100ef3

View File

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