Sanitize source download folder name (fixes #4945)

(cherry picked from commit fa31369f99)
This commit is contained in:
arkon
2021-04-23 08:43:47 -04:00
committed by Jobobby04
parent 80bf908133
commit bda4aae83d
@@ -139,7 +139,7 @@ class DownloadProvider(private val context: Context) {
* @param source the source to query.
*/
fun getSourceDirName(source: Source): String {
return source.toString()
return DiskUtil.buildValidFilename(source.toString())
}
/**