Actually ignore the case...

This commit is contained in:
arkon 2021-04-11 14:23:24 -04:00
parent 02c9191525
commit 592050c668

View File

@ -65,7 +65,7 @@ class DownloadProvider(private val context: Context) {
* @param source the source to query.
*/
fun findSourceDir(source: Source): UniFile? {
return downloadsDir.findFile(getSourceDirName(source), false)
return downloadsDir.findFile(getSourceDirName(source), true)
}
/**