Revert case insensitive source folder check

This commit is contained in:
arkon
2021-04-11 18:19:41 -04:00
parent a3f1b72126
commit 0dc4862d79
2 changed files with 2 additions and 2 deletions

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), true)
return downloadsDir.findFile(getSourceDirName(source))
}
/**